update database调用特定的迁移

时间:2015-11-27 11:00:54

标签: asp.net-core entity-framework-core

我尝试在迁移后更新我的数据库(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迁移?

谢谢,

1 个答案:

答案 0 :(得分:1)

下面应该有效

dnx ef database update -c DataContext -p Infrastructure

如果没有,请检查“迁移历史记录”表是否有迁移条目“v1”