为什么我的基于DataAnnotations的手动验证不起作用?

时间:2013-01-22 13:40:15

标签: validation .net-4.0 data-annotations

我正在尝试使用DataAnnotations对类进行手动验证。该应用程序是一个控制台应用程序,因此不涉及MVC。我使用的是.NET 4.0。

我从this article得到了我的指导:唯一的区别似乎是我正在尝试使用元数据类。但我读过的其他内容表明可以做到这一点。

但是,在运行时,对象通过验证。我在MVC3中使用了DataAnnotations,并认为我对它们非常好,但我很困惑。

我错过了什么?是否需要除System.ComponentModel.DataAnnotations之外的程序集?

/// This is a partial-class addition to an Entity Framework class, so the properties are
/// defined in the EF .designer.cs file.  
[MetadataType(typeof(EntityMetadata.tblThingMetaData ))]
public partial class tblThing
{

}

元数据类:

public partial class tblThingMetaData
{
    [Required(AllowEmptyStrings = false, ErrorMessage = "Sequence number is required")]
    [RegularExpression("A")]
    public string seq_num { get; set; }
}

测试:

    [TestMethod]
    public void VerifyValidationWorksOnEntities()
    {
        tblThing newThing = new tblThing()
        {
            seq_num = "B"
        };

        List<ValidationResult> results = new List<ValidationResult>();
        bool validationResult = Validator.TryValidateObject(
            newThing,
            new ValidationContext(newThing, null, null),
            results,
            true);

        Assert.AreNotEqual(0, results.Count);
        Assert.IsFalse(validationResult);
    }

我尝试了其他变体:newThing.seq_num为空,仅验证seq_num属性等。它始终通过验证并且没有验证结果。测试总是失败。

非常感谢您给我的任何建议。

1 个答案:

答案 0 :(得分:3)

找到答案here。显然,除非在验证之前添加以下内容,否则这在Silverlight或MVC之外不起作用:

TypeDescriptor.AddProviderTransparent(
   new AssociatedMetadataTypeTypeDescriptionProvider(
       typeof(tblThing),
       typeof(EntityMetadata.tblThingMetaData)
   ), typeof(tblThing));

请注意,最后一个参数必须是typeof(tblThing),而不是newThing。尽管有一个重载会占用您与元数据关联的类型的单个实例,即使这是您计划验证的相同实例,但如果您提供实例而不是类型,它将无法工作。

Tiresome,但至少它现在有效。