ef core update database code example

Example 1: add migration ef core

dotnet ef migrations add InitialCreate

Example 2: ef remove migration

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

Example 3: add migration ef core

dotnet ef database update

Example 4: ef rollback migration

//EF 6.4 
//PM> Update-Database -TargetMigration:"NameOfSecondToLastMigration"

Example 5: ef core update database command

update database

Tags:

Php Example