xxxxxxxxxx
* CLI
dotnet ef migrations remove
*Package Manager Console
PM> Remove-Migration
xxxxxxxxxx
dotnet ef database drop -f -v
dotnet ef migrations add Initial
dotnet ef database update
xxxxxxxxxx
You can't, you can only remove the last migration and keep going until you reach the migration you want.