我对Entity进行了一些更改,并在packageManager控制台中成功执行了“update-database -verbose”,我可以看到azure数据库中反映的更改。
然后我对azure cloud进行了部署,我收到了Azure云的错误消息
"The model backing the 'myDBContext' context has changed since the database was created. Consider using Code First Migrations to update the database"
我尝试设置Configuration.AutoDetectChangesEnabled = false并重新部署
但我仍然得到同样的错误。
请帮助..
答案 0 :(得分:8)
我通过添加
解决了这个问题 Database.SetInitializer<MyContext>(null);
到Global.asax.cs