remove migration entity framework core command code example
Example 1: how to remove last migration in ef core
* CLI
dotnet ef migrations remove
*Package Manager Console
PM> Remove-Migration
Example 2: ef core delete all migrations
dotnet ef database drop -f -v
dotnet ef migrations add Initial
dotnet ef database update
Example 3: package manager console add migration
add-migration MyFirstMigration
Update-Database