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

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

    To completely remove all migrations and start all over again, do the following:

    dotnet ef database update 0
    dotnet ef migrations remove
    

提交回复
热议问题