update the current database asp net core entity framework code example
Example 1: ef remove migration
/*to remove the last migration:*/
/*Visual Studio:*/
Remove-Migration
/*.Net Core CLI:*/
dotnet ef migrations remove
Example 2: how to remove last migration in ef core
* CLI
dotnet ef migrations remove
*Package Manager Console
PM> Remove-Migration