我有2次迁移。首先是AddEmployee,第二个是AddCustomer。
我想要投放:
Update-Database –TargetMigration: AddEmployee
但是显示:
在程序集中找到了多个迁移配置类型 'Konstructor'。指定要使用的名称。
如何解决这个问题?
答案 0 :(得分:0)
您的项目中有两个上下文。你需要像这样指定名称:
Update-Database –TargetMigration: AddEmployee -ConfigurationTypeName MyContextConfiguration