emildr / EF Core Cheatsheet
0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність 2 months ago
| 1 | # Creates a new migration |
| 2 | dotnet ef migrations add MigrationName --project "../Domain/Domain.csproj" |
| 3 | |
| 4 | # Runs the migrations |
| 5 | dotnet ef database update --project "../Domain/Domain.csproj" |
| 6 | |
| 7 | # Creates a SQL command that matches the migration |
| 8 | dotnet ef migrations script ---project "../Domain/Domain.csproj" |
| 9 | |
| 10 | # Checks for pending model changes |
Новіше
Пізніше