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