/aspnetcore-todoapp

A simple todo-app in Razor Pages / .NET 6

Primary LanguageC#MIT LicenseMIT

aspnetcore-todoapp Build

Uses SqlLite, EntityFramework and AspNetCore.Identity

Install dotnet ef

dotnet tool install --global dotnet-ef

Create the database for todo lists

Modify TodosConnection in Infrastructure\appsettings.json (or use user-secret)

cd Infrastructure
dotnet ef database update

Create database for application users

cd RazorPagesApp
dotnet ef database update --context ApplicationDbContext