After importing the migrations from Zero, I need to manually make the EF model and have it not update my database.
Running a working Zero install after my model changes and I got
System.InvalidOperationException: The model backing the 'DbContext' context has changed since the database was created. Consider using Code First Migrations to update the database (http://go.microsoft.com/fwlink/?LinkId=238269).
I cannot chance migrating into my existing schema. I've had this before in other APB projects and added,
Database.SetInitializer<DbContext>(null);
into the DbContext constructor.
Now I am stuck with an error,
System.ApplicationException: Filter name MustHaveTenant not found
Do I need to create a custom DbInitializer that deals with these new Zero Filters?
3 Answer(s)
-
0
Hi,
I just added
Database.SetInitializer<TestProjDbContext>(null);
to PreInitialize method of DataModule class and it worked.
Have you overrided OnModelCreating or Initialize methods of your DbContext also? If so, call base methods as first line.
-
0
<cite>hikalkan: </cite>
Have you overrided OnModelCreating or Initialize methods of your DbContext also? If so, call base methods as first line.
That was it, thank you so much. Great support as always.
-
0
You're welcome :)