How to unapply a migration in ASP.NET Core with EF Core

前端 未结 16 2268
余生分开走
余生分开走 2020-12-07 08:10

When I run PM> Remove-Migration -context BloggingContext in VS2015 with an ASP.NET Core project using EF Core I get the following error:

Syst         


        
16条回答
  •  既然无缘
    2020-12-07 08:47

    You should delete migration '20160703192724_MyFirstMigration' record from '_EFMigrationsHistory' table.

    otherwise this command will remove migration and delete migrations folder:

       > remove-migration -force
    

提交回复
热议问题