我的ViewModel具有以下属性

[StringLength(20, MinimumLength = 1, ErrorMessageResourceName = "Error_StringLength", ErrorMessageResourceType = typeof(Global))]
public string LeagueName { get; set; }


如果该字符串最终大于20个字符,则将触发验证,并且不允许用户发布表单。但是,如果该字段为空白,则意味着LeagueName属性的长度小于1,它将允许用户发布表单。

我知道可以通过使用Required属性轻松解决此问题,但是为什么在这种情况下验证无法按预期进行?

最佳答案

这是设计使然。

这是StringLength的验证逻辑:

public override bool IsValid(object value)
{
  this.EnsureLegalLengths();
  int num = value == null ? 0 : ((string) value).Length;
  if (value == null)
    return true;
  if (num >= this.MinimumLength)
    return num <= this.MaximumLength;
  else
    return false;
}


如您所见,当字符串为null时,StringLength返回true。

09-28 05:47