我有两个数据库,每个数据库都有自己的dbcontext.我已经设置了两个迁移配置.我可以为第一个db ust罚款添加迁移(Add-Migration DB1_InitialCreate -ConfigurationTypeName DB1Configuration).当我尝试使用第二个db创建初始迁移时:Add-Migration DB2_InitialCreate -ConfigurationTypeName DB2Configuration,我收到以下错误:
Unable to generate an explicit migration because the following explicit migrations are pending: [201205082215265_DB1_InitialCreate]. Apply the pending explicit migrations before attempting to generate a new explicit migration.
Update-Database -ConfigurationTypeName DB1Configuration
然后我尝试再次为第二个数据库添加迁移,但我一直收到相同的错误.
有关如何使迁移适用于两个数据库/上下文的任何想法?
解决方法
我已经能够回答我自己的问题了.我的两个配置类存在于同一个命名空间中.我把它们分开后,一切都运转了.