Answers for "ef core migration commands"

1

entity framework core add database migrations

dotnet tool install --global dotnet-ef
dotnet ef database drop
dotnet ef database update
dotnet ef migrations add InitialCreate
Posted by: Guest on July-26-2021
1

ef rollback migration

//EF 6.4 
//PM> Update-Database -TargetMigration:"NameOfSecondToLastMigration"
Posted by: Guest on July-06-2020
0

ef core update database command

update database
Posted by: Guest on January-13-2021

Browse Popular Code Answers by Language