prototype_server Database Migrations Add dotnet ef migrations add [migration name] Remove dotnet ef migrations remove Apply (Commit) dotnet ef database update Revert dotnet ef database update [migration name] Tests Run dotnet test /p:AltCover=true /p:AltCoverXmlreport="bin/Debug/netcoreapp2.2/Reports/coverage.xml" /p:AltCoverAssemblyExcludeFilter="NUnit|Specs" /p:AltCoverPathFilter="Libs|Migrations" Generate Coverage dotnet reportgenerator -reports:bin/Debug/netcoreapp2.2/Reports/coverage.xml -targetdir:bin/Debug/netcoreapp2.2/Reports "-reporttypes:Html;Badges" HTML Spec Report Path bin/Debug/netcoreapp2.2/Reports/specs-report.html HTML Coverage Report Path bin/Debug/netcoreapp2.2/Reports/index.htm