How does ASP.NET Core Identity store user data by default?
- In a SQL Server database
- In a NoSQL database
- In plain text files
- In memory
ASP.NET Core Identity, by default, stores user data in a SQL Server database. This includes user profiles, passwords (hashed and salted), and other related data in a structured manner for security and scalability.
Loading...
Related Quiz
- Razor views support ________, which allows for logic to be embedded directly within the HTML.
- When configuring ASP.NET Core Identity, the _________ class is used to specify policies like password strength and lockout duration.
- When using Entity Framework Core, how can developers specify relationships like one-to-one, one-to-many, or many-to-many between entities?
- If you want to set up a project with user authentication mechanisms built-in, which template should you opt for?
- After setting up your new ASP.NET Core website, you find that your site's main logo and stylesheet aren't loading. What could be a potential reason for this issue?