实体框架:生成用于迁移降级的脚本

时间:2018-06-13 13:06:36

标签: visual-studio entity-framework database-migration

据我所知,Entity Framework迁移有两个部分" Up"和" Down"

public partial class EnityName : DbMigration
{
    public override void Up()
    {
        ///Forward Migration Script goes here
    }

    public override void Down()
    {
         //Downward Migration Script goes here. I want to be able to generate the downgrade here

    }
}

我可以使用命令

从Visual Studio的包管理器控制台生成转发脚本
update-database -script

如何从visual studio生成反向迁移脚本?我指的是迁移失败的迁移。

谢谢

0 个答案:

没有答案