我尝试在迁移后更新我的数据库(V2是迁移的名称):
dnx ef database update V2 -c DataContext -p Infrastructure
我有一个错误,因为dnx尝试执行所有迁移而不仅仅是V2。
Applying migration '20151127095324_V1'
...
There is already an object named 'myEntity' in the database
您是否知道为什么尝试应用V1迁移?
谢谢,
答案 0 :(得分:1)
下面应该有效
dnx ef database update -c DataContext -p Infrastructure
如果没有,请检查“迁移历史记录”表是否有迁移条目“v1”