update database migration .net core 3.1 code example
Example 1: C# aspnet how to run a migration
dotnet ef database update
Example 2: ef rollback migration
//EF 6.4
//PM> Update-Database -TargetMigration:"NameOfSecondToLastMigration"
dotnet ef database update
//EF 6.4
//PM> Update-Database -TargetMigration:"NameOfSecondToLastMigration"