2011-03-30 40 views

回答

6

使用開箱即用功能,我不相信這是可能的。

然而,這當然是可能通過創建自己的自定義ValidationAttribute

public class MinLengthOrNullAttribute : ValidationAttribute 
{ 
    public int MinLength { get; set; } 

    public MinLengthOrNullAttribute(int minLength) 
    { 
     MinLength = minLength; 
    } 

    public override Boolean IsValid(Object value) 
    { 
     return value == null || (value as string).Length > minLength; 
    } 
} 
+0

啊,認爲可能是這種情況。感謝您的答案,雖然:) – 2011-03-30 13:58:47

相關問題