Creating Users with No Password using ASP.NET Identity
问题 I have been given the requirement to provide the ability to create users through the UI with no password. I am trying to accomplish this using ASP.NET Identity. I am able to successfully create a user without a password using the UserManager's Create method: if (vm.ShouldHavePassword) { userManager.Create(userToInsert, vm.Password); } else { userManager.Create(userToInsert); } After the call to the Create method, the test user gets successfully saved into our AspNetUsers table. And when I do