我想在用户名中使用一些特殊字符,如ø
。
但是我在
IdentityResult result = UserManager.Create(applicationUser, password);
错误:
用户名testø无效,只能包含字母或数字。
我们如何解决它?如何允许一些特殊字符?
我找到了我必须做什么
public class ApplicationUserManager : UserManager<ApplicationUser>
{
public ApplicationUserManager()
: base(new UserStore<ApplicationUser>(new ApplicationDbContext()))
{
PasswordValidator = new MinimumLengthValidator(4);
UserValidator = new UserValidator<ApplicationUser>(this)
{ AllowOnlyAlphanumericUserNames = false };
}
}