ef core database migration code example
Example 1: add migration ef core
dotnet ef migrations add InitialCreate
Example 2: C# aspnet how to run a migration
dotnet ef database update
Example 3: ef rollback migration
//EF 6.4
//PM> Update-Database -TargetMigration:"NameOfSecondToLastMigration"
Example 4: ef core update database command
update database