标签: asp.net-mvc asp.net-mvc-5
我需要检查一个新的输入特定用户名的公式。
用户名是用户的唯一标识符。
用户名至少应有2个字符。
现在我想到了使用远程验证+ StringLength验证属性。
但是我也可以从ValidationAttribute继承并使我的service.UserExists在那里调用+ string length。
我应该支持什么?