dotnet ef database update code example
Example 1: ef migrations
PM> add-migration MyFirstMigration
PM> Update-Database
Example 2: ef remove migration
/*to remove the last migration:*/
/*Visual Studio:*/
Remove-Migration
/*.Net Core CLI:*/
dotnet ef migrations remove
Example 3: 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
Example 4: enable migration in .net core
dotnet ef migrations add InitialCreate
Example 5: enable migration in .net core
dotnet ef database update
Example 6: ef core update database command
update database