VSCode development docker container has been setup.
Run inside the remote development container:
./develop.sh
Create a new database migration:
dotnet ef migrations add "<name_of_migration>" \
--project sp2000.Infrastructure \
--startup-project sp2000.API \
--output-dir Persistance/Migrations \
--context ApplicationDbContext
Update the database with the migration(s):
dotnet-ef database update \
--project sp2000.API/sp2000.API.csproj \
--context ApplicationDbContext
Red squiggly lines everywhere, VSCode -> <CTRL + SHIFT + P> restart omnisharp, the language server.