In ASP.NET Core Identity, what is primarily used to add additional properties to the user model?

  • ApplicationUser Class
  • ApplicationDbContext
  • IdentityRoles
  • Microsoft.EntityFrameworkCore
In ASP.NET Core Identity, developers typically create a custom class, often named "ApplicationUser," which inherits from the built-in IdentityUser class. This custom class is used to add additional properties to the user model, such as user-specific data that your application requires beyond the default user attributes.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *