36

有什么方法可以验证在 WPF 和实体框架中使用 DataAnnotations 吗?

4

7 回答 7

48

您可以使用 DataAnnotations.Validator 类,如下所述:

http://johan.driessen.se/archive/2009/11/18/testing-dataannotation-based-validation-in-asp.net-mvc.aspx

但是,如果您对元数据使用“伙伴”类,则需要在验证之前注册该事实,如下所述:

http://forums.silverlight.net/forums/p/149264/377212.aspx

TypeDescriptor.AddProviderTransparent(
  new AssociatedMetadataTypeTypeDescriptionProvider(typeof(myEntity), 
    typeof(myEntityMetadataClass)), 
  typeof(myEntity));

List<ValidationResult> results = new List<ValidationResult>();
ValidationContext context = new ValidationContext(myEntity, null, null)
bool valid = Validator.TryValidateObject(myEntity, context, results, true);

[添加以下内容以回应 Shimmy 的评论]

我写了一个泛型方法来实现上面的逻辑,这样任何对象都可以调用它:

// If the class to be validated does not have a separate metadata class, pass
// the same type for both typeparams.
public static bool IsValid<T, U>(this T obj, ref Dictionary<string, string> errors)
{
    //If metadata class type has been passed in that's different from the class to be validated, register the association
    if (typeof(T) != typeof(U))
    {
        TypeDescriptor.AddProviderTransparent(new AssociatedMetadataTypeTypeDescriptionProvider(typeof(T), typeof(U)), typeof(T));
    }

    var validationContext = new ValidationContext(obj, null, null);
    var validationResults = new List<ValidationResult>();
    Validator.TryValidateObject(obj, validationContext, validationResults, true);

    if (validationResults.Count > 0 && errors == null)
        errors = new Dictionary<string, string>(validationResults.Count);

    foreach (var validationResult in validationResults)
    {
        errors.Add(validationResult.MemberNames.First(), validationResult.ErrorMessage);
    }

    if (validationResults.Count > 0)
        return false;
    else
        return true;
}

在每个需要验证的对象中,我都添加了对该方法的调用:

[MetadataType(typeof(Employee.Metadata))]
public partial class Employee
{
    private sealed class Metadata
    {
        [DisplayName("Email")]
        [Email(ErrorMessage = "Please enter a valid email address.")]
        public string EmailAddress { get; set; }
    }

    public bool IsValid(ref Dictionary<string, string> errors)
    {
        return this.IsValid<Employee, Metadata>(ref errors);
        //If the Employee class didn't have a buddy class,
        //I'd just pass Employee twice:
        //return this.IsValid<Employee, Employee>(ref errors);
    }
}
于 2010-03-18T03:24:17.357 回答
4

我认为 Craigs 的答案缺少的是如何实际检查是否存在验证错误。这是 Steve Sanderson 为那些想要在不同层运行验证检查然后演示的人编写的 DataAnnotation 验证运行器(http://blog.codeville.net/category/xval/,代码在示例项目中):

public static IEnumerable<ErrorInfo> GetErrors(object instance)
{
    var metadataAttrib = instance.GetType().GetCustomAttributes
        (typeof(MetadataTypeAttribute), true).
            OfType<MetadataTypeAttribute>().FirstOrDefault();
    var buddyClassOrModelClass = 
        metadataAttrib != null ? 
        metadataAttrib.MetadataClassType : 
        instance.GetType();
    var buddyClassProperties = TypeDescriptor.GetProperties
        (buddyClassOrModelClass).Cast<PropertyDescriptor>();
    var modelClassProperties = TypeDescriptor.GetProperties
        (instance.GetType()).Cast<PropertyDescriptor>();

    return from buddyProp in buddyClassProperties
           join modelProp in modelClassProperties
               on buddyProp.Name equals modelProp.Name
           from attribute in buddyProp.Attributes.
               OfType<ValidationAttribute>()
           where !attribute.IsValid(modelProp.GetValue(instance))
           select new ErrorInfo(buddyProp.Name, 
               attribute.FormatErrorMessage(string.Empty), instance);
}

我不熟悉 WPF(不确定是否有一些开箱即用的解决方案可以解决您的问题),但也许您可以使用它。

此外,他的博客上有一些评论,在某些情况下,它无法正确评估验证规则,但对我来说从未失败。

于 2009-11-18T15:48:51.070 回答
3

您可能对WPF 应用程序框架 (WAF)的BookLibrary示例应用程序感兴趣。它完全符合您的要求:在 WPF 和实体框架中使用 DataAnnotations。

于 2011-02-06T07:28:59.560 回答
1

我有同样的问题,发现了以下想法:

于 2010-01-22T23:20:38.647 回答
0

使用“伙伴班”。本指南中的第 4

于 2009-11-18T14:25:34.803 回答
0

在 .NET 4 中,Entity-Framework 使用此扩展提供验证支持,请查看:http: //blogs.msdn.com/adonet/archive/2010/01/13/introducing-the-portable-extensible-metadata。 aspx

我不确定它是否确实使用了 DataAnnotations。

更新
我用 VB.NET 试过了,但没有用,我认为它只支持 C# 项目。

于 2010-02-09T19:40:31.357 回答
0

我编写了一个基于贡献者的验证器,其中包括一个 DataAnnotation 验证贡献者,并且还检查损坏的绑定(用户输入了错误的类型)

http://adammills.wordpress.com/2010/07/21/mvvm-validation-and-type-checking/

于 2010-07-21T22:26:46.700 回答