When creating users programmatically in a system that uses multi-tenancy, what additional step might you need to consider during user creation in ASP.NET Core Identity?

  • Assigning the user to the correct tenant
  • Setting a password expiration policy
  • Generating a unique username
  • Defining user claims
In a multi-tenancy system, you must ensure that users are assigned to the correct tenant or organization during user creation. This typically involves associating the user with the relevant tenant identifier or context to maintain data separation between tenants.
Add your answer
Loading...

Leave a comment

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