# install dependencies
dotnet restore
# update database to the most recent migrations
dotnet ef database update
# run the app
dotnet run
EF migrations helper code:
dotnet tool install --global dotnet-ef
dotnet add package Microsoft.EntityFrameworkCore.Design
dotnet ef migrations add InitialCreate
dotnet ef database update