0

我正在尝试设置一些使用 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 语句。有任何想法吗?

4

1 回答 1

0

没关系!我想到了。显然 using 语句是不够的。我还必须将项目引用添加到包中。

于 2013-03-18T22:20:45.260 回答