我是 EF 代码的新手。我在生产中有一个现有的数据库,我首先使用了 EF 4.3.1 代码,一切正常。现在我刚刚更新了我的数据库模式并得到了异常
System.InvalidOperationException: The model backing the 'MyDbContext' context has changed since the database was created. Consider using Code First Migrations to update the database (http://go.microsoft.com/fwlink/?LinkId=238269).
我不能使用DropCreateDatabaseIfModelChanges
,因为它在生产中,应对架构更改的最简单方法是什么?
谢谢你。