As database Postgres is used. Just to be different and not always use SqlServer. The most easy way to get started is to use Docker to get the database up and running. The included docker-compose file will do that for you.
docker-compose up -d
- Create a new database chinook
- Run the provide sql to seed the database
scripts\Chinook_Postgres.sql
- Add the user secrets to your environment
dotnet user-secrets set DefaultConnection "Host=localhost;Database=chinook;Username=root;Password=root1234\!"