我正在使用MVC开发一个应用程序。 我正在尝试使用 rui.martins 作为用户名注册测试用户,但我不能。 我得用户名rui.martins无效,只能包含字母或数字。 我该如何更改此限制?
答案 0 :(得分:0)
I solved it
public AccountController(UserManager<ApplicationUser> userManager)
{
UserManager = userManager;
userManager.UserValidator = new UserValidator<ApplicationUser>(UserManager)
{
**AllowOnlyAlphanumericUserNames = false**
};
}