我在我的代码中使用DbMigrator:
var config = new Configuration();
return new DbMigrator(config);
它将用于在每个应用程序启动时运行Update方法。
我想在初始版本之外创建另一个迁移,其中ALREADY已通过Package Manager Console应用于数据库。当我尝试通过“添加迁移”添加新迁移时,我得到了什么?是这个错误:
Unable to generate an explicit migration because the following explicit migrations are pending: [201612101502537_InitialMigration]. Apply the pending explicit migrations before attempting to generate a new explicit migration.
但是这个迁移已经应用到数据库了,我可以看到它!我在做什么?