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 |
Новее
Позже