Which of the following properties is NOT typically required when creating a new user in ASP.NET Core Identity?

  • UserName
  • Email
  • PasswordHash
  • PhoneNumber
While UserName, Email, and PhoneNumber are common properties required when creating a new user in ASP.NET Core Identity, PasswordHash is not typically required. The password is provided as plaintext and is hashed internally by Identity for security.
Add your answer
Loading...

Leave a comment

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