To extend the default user store in ASP.NET Core Identity, one would typically implement the _________ interface.

  • IUserStore
  • IIdentityStore
  • ICustomStore
  • IUserExtend
To extend the default user store in ASP.NET Core Identity, you would typically implement the IUserStore interface. This interface allows you to customize how user information is stored and managed. You can create a custom user store by implementing this interface and providing your own data storage mechanisms.
Add your answer
Loading...

Leave a comment

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