我必须从没有安装Visual Studio的SQL Server 2016中恢复最后一次EF Core迁移。怎么做?
注意:我已经尝试在服务器上安装.NET SDK,但它不知道命令dotnet ef
。执行命令会导致
No executable found matching command "dotnet-ef"
答案 0 :(得分:3)
您可以使用Script-Migration
或dotnet ef migrations script
命令生成SQL脚本以还原迁移。
dotnet ef migrations script TheAppliedMigration TheMigrationBeforeIt -o revert.sql