Search code examples
c#entity-frameworkasp.net-identity

Handling Users in a Entity Framework project


I need some advise regarding the software design related handling and persisting the user data across multiple views in my project. First, let me give you the overview of my project.

The project is split into two components. The WebApp is responsible for displaying the front end to the user. The WebApi, using Entity Framework code first approach, is responsible to interact with the database.

I've to implement the Users functionality. Such as Login, Logout and ensuring views accessible to the users on the basis of the roles assigned.

As per our requirement, only Active Directory users are granted access to the application. Is there a way, could anyone suggest a tutorial, how I could implement this using asp.net Core Identity?


Solution

  • Using Identity Create Web Application project with Individual User Accounts.
    Check out this link Link