1

.NET Frameworkの標準.NET Frameworkでは、を使用してundo最後のデータベースを更新できます。.NET FrameworkのEntity Framework Update-Databaseを元に戻す方法

Update-Database -TargetMigration "NameOfPreviousMigration" 

は、.NETのコア(EntityFrameworkCore)のためのEntity Frameworkの上でこれをしようとすると、次のエラーを取得する:私は.NETのコアでデータベースを元に戻すことができますどのように

Update-Database : A parameter cannot be found that matches parameter name 'TargetMigration'. At line:1 char:17 + Update-database -TargetMigration "NameOfPreviousMigration" + ~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidArgument: (:) [Update-Database], ParameterBindingException + FullyQualifiedErrorId : NamedParameterNotFound,Update-Database

答えて

7

これを行うには、EntityFrameworkCoreでTargetMigrationパラメーターを使用しないでください。元に戻したいマイグレーションの名前を付けるだけです。

Update-Database NameOfPreviousMigration 
関連する問題