# Creates a new migration dotnet ef migrations add MigrationName --project "../Domain/Domain.csproj" # Runs the migrations dotnet ef database update --project "../Domain/Domain.csproj" # Creates a SQL command that matches the migration dotnet ef migrations script ---project "../Domain/Domain.csproj" # Checks for pending model changes dotnet ef migrations has-pending-model-changes --project "../Domain/Domain.csproj" # Removes the most recent migration dotnet ef migrations remove --project "../Domain/Domain.csproj"