我想使用Code First Migration但错误的消息

时间:2016-08-23 17:29:15

标签: entity-framework

我有2次迁移。首先是AddEmployee,第二个是AddCustomer。

我想要投放:

 Update-Database –TargetMigration: AddEmployee 

但是显示:

  

在程序集中找到了多个迁移配置类型   'Konstructor'。指定要使用的名称。

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

您的项目中有两个上下文。你需要像这样指定名称:

Update-Database –TargetMigration: AddEmployee -ConfigurationTypeName MyContextConfiguration