ASP.NET 身份用户名中的特殊语言字符
本文关键字:语言 字符 NET 身份 用户 ASP | 更新日期: 2023-09-27 18:30:25
我想在用户名中使用一些特殊字符,如ø
。
但是我在
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 };
}
}