How to disable migration in Entity Framework 4.3.1?

If you don’t want to use migrations but in the same time you want EF to create database for you, you just need to set correct database initializer:

Database.SetInitializer<YourContextType>(new CreateDatabaseIfNotExists<YourContentType>());

Leave a Comment