背景:VS 2012
我们已将表迁移拆分为单独的类,因此我们有
1级,
[Migration(1306122)]
class M1306122CreateTableX: Migration
{...}
2级,
[Migration(1306123)]
class M1306123CreateTableY: Migration
{...}
等我两次创建了一个新类,增加了迁移编号,(似乎是完全有效的代码)迁移过程只是不运行新类。没有错误或任何东西。它只是不运行。
现在我们正在使用批处理文件来运行迁移。
migrate.exe ^
/connection "Server=(local)\SQLEXPRESS; Database=%2_Aggregated; Integrated Security=True" ^
/db SqlServer2012 ^
/target %1 ^
/namespace DatabaseMigrations.Aggregated ^
/nested
有什么方法可以调试来找出为什么不包含新类?