我正在尝试设置一些使用 System.ComponentModel.DataAnnotations 的自定义验证方法。我已经编写了一些用于验证的通用方法。这是发生问题的地方:
private void SetValidationAttributeErrors<TEntity>(TEntity item, List<string> errors)
{
var result = from prop in TypeDescriptor.GetProperties(item).Cast<PropertyDescriptor>()
from attribute in prop.Attributes.OfType<ValidationAttribute>()
where !attribute.IsValid(prop.GetValue(item))
select attribute.FormatErrorMessage(string.Empty);
}
我在“ValidationAttribute”类型上有一个错误,说找不到它。我有 DataAnnotations 的 using 语句。有任何想法吗?