dotnet ef 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: ef remove migration

/*to remove the last migration:*/
/*Visual Studio:*/
Remove-Migration
/*.Net Core CLI:*/
dotnet ef migrations remove

Example 4: add migration ef core

dotnet ef database update

Example 5: C# aspnet how to run a migration

dotnet ef database update

Example 6: dotnet ef add migration context

dotnet ef migrations add InitialCreate --context BlogContext --output-dir Migrations/SqlServerMigrations
dotnet ef migrations add InitialCreate --context SqliteBlogContext --output-dir Migrations/SqliteMigrations