-
Notifications
You must be signed in to change notification settings - Fork 27
Project structure, DbContexts and Identity
yohsii edited this page Sep 17, 2019
·
4 revisions
there are two projects, core
which is a .net standard 2.1 class library and puckweb
which is an Asp.net core 3 project. the puckweb
project is based on the default asp.net core 3 web application project with logins using Identity.
if you plan on using Entity Framework and Identity, it's recommended that you create a new DbContext rather than modifying the PuckContext
and it's also recommended that you setup your own ApplicationUser
which inherits from IdentityUser
.