Our requirement is to insert bulk users. We are using IdentityRepository InsertManyAsync to insert bulk users, it is working good except create password for the users because, we can not assign PasswordHash to IdentityUser entity as it's set parameter is protected and we don't want to use UserManager to create users.
Is there any alternate way to insert bulk users Please advise.