Last active
December 3, 2022 05:20
-
-
Save sokhomhuy/678a506b0d2584f07264610ec49f541d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dotnet restore => restore nuget | |
dotnet build => build project | |
dotnet run => run project | |
dotnet ef migrations add "migration name" => add new migration | |
dotnet ef migrations remove => remove migration | |
dotnet ef database update => update-database migration | |
dotnet ef migrations list => view all migration list | |
dotnet ef database update "NameOfYourMigration" => revert migration by specific name | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment