ASP.NET Core 5.0 and PostgreSQL (edit)
Building REST APIs with .NET 5, ASP.NET Core, and PostgreSQL | End Point
.NET Core, ASP.NET Core logging with NLog and PostgreSQL | Software Engineering (damienbod.com)
ASP.NET Core with PostgreSQL and Dapper - CRUD Operations Example - TechBrij
Store images in SQL Server using EF Core and ASP.NET Core | BinaryIntellect Knowledge Base
dotnet tool install --global dotnet-aspnet-codegenerator
Entity Framework command line tool
dotnet tool install --global dotnet-ef
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL
dotnet add package EFCore.NamingConventions
dotnet ef migrations add AddLookupTables
dotnet ef database update
dotnet ef migrations add AddSeedDataForSizesAndBodyTypes
dotnet ef database update
Building REST APIs with .NET 5, ASP.NET Core, and PostgreSQL | End Point