How can I disable model compatibility checking in Entity Framework 4.3?

Setting the initializer to null will skip the model compatibility check.

Database.SetInitializer<MyContext>(null);

Leave a Comment