FluentMigrator命令返回未找到迁移

时间:2018-08-01 15:56:49

标签: c# .net fluent-migrator

我创建了一个新的公共类M203_InsertPercent,它将仅基于SQL语句将数据插入数据库中。当我使用连接字符串和程序集FluentMigrator.Console运行Migrate.exe时,返回“找不到迁移”。我在版本表中查看数据库,但类名不在该表中。有什么我想念的吗?

2 个答案:

答案 0 :(得分:1)

确保您的迁移类使用Migration属性修饰。

[Migration(203)]
public class M203_InsertPercent : Migration
{
    ...
}

答案 1 :(得分:0)