Skip to content

Instantly share code, notes, and snippets.

@sokhomhuy
Last active December 3, 2022 05:20
Show Gist options
  • Save sokhomhuy/678a506b0d2584f07264610ec49f541d to your computer and use it in GitHub Desktop.
Save sokhomhuy/678a506b0d2584f07264610ec49f541d to your computer and use it in GitHub Desktop.
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