0
vitaly created
2 Answer(s)
-
0
Username is mandatory. But you can use email as username as a workaround.
-
0
FWIW I found that I also needed to add a custom validator in my UserManager ctor to be able to use non-alphanumeric characters in the username:
this.UserValidator = new UserValidator<User,long>(this) { RequireUniqueEmail = false, AllowOnlyAlphanumericUserNames = false };