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

前端 未结 16 2266
余生分开走
余生分开走 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:57

    In Package Manager Console:

    Update-Database Your_Migration_You_Want_To_Revert_To

    More options and explanation on how to revert migrations can be seen here

提交回复
热议问题