Create new asp.net site with SQLite database
dotnet new mvc -au Individual
Cross compile on Windows for Ubuntu:
dotnet publish --runtime ubuntu.22.04-x64 -c Release
then to run it
dotnet myprojname.dll
Create a minimal dotnet 7 app with anonymous function for endpoints
dotnet new web
Install tools
dotnet tool install --global dotnet-ef
dotnet add package Microsoft.EntityFrameworkCore.Design
dotnet tool update -g dotnet-aspnet-codegenerator
dotnet add package Microsoft.VisualStudio.Web.CodeGeneration.Design
Generate Identity Razor pages for easy overriding
dotnet aspnet-codegenerator identity -u User