ef core update database command code example
Example 1: add migration ef core
dotnet ef database update
Example 2: ef rollback migration
//EF 6.4
//PM> Update-Database -TargetMigration:"NameOfSecondToLastMigration"
Example 3: ef core update database command
update database