使用Validator类验证DataAnnotations

时间:2010-01-12 15:45:28

标签: c# .net validation .net-4.0 data-annotations

我正在尝试使用Validator class验证使用数据注释修饰的类。

将属性应用于同一个类时,它可以正常工作。但是当我尝试使用元数据类时,它不起作用。我应该对Validator做什么,所以它使用元数据类?这是一些代码..

这有效:

public class Persona
{
    [Required(AllowEmptyStrings = false, ErrorMessage = "El nombre es obligatorio")]
    public string Nombre { get; set; }

    [Range(0, int.MaxValue, ErrorMessage="La edad no puede ser negativa")]
    public int Edad { get; set; }
}

这不起作用:

[MetadataType(typeof(Persona_Validation))]
public class Persona
{
    public string Nombre { get; set; }
    public int Edad { get; set; }
}

public class Persona_Validation
{
    [Required(AllowEmptyStrings = false, ErrorMessage = "El nombre es obligatorio")]
    public string Nombre { get; set; }

    [Range(0, int.MaxValue, ErrorMessage = "La edad no puede ser negativa")]
    public int Edad { get; set; }
}

这是我验证实例的方式:

ValidationContext context = new ValidationContext(p, null, null);
List<ValidationResult> results = new List<ValidationResult>();

bool valid = Validator.TryValidateObject(p, context, results, true);

感谢。

2 个答案:

答案 0 :(得分:45)

我在这里找到答案:http://forums.silverlight.net/forums/p/149264/377212.aspx

MVC识别MetaDataType属性,但其他项目则不然。在验证之前,您需要手动注册元数据类:

TypeDescriptor.AddProviderTransparent(
            new AssociatedMetadataTypeTypeDescriptionProvider(typeof(Persona), typeof(Persona_Validation)), typeof(Persona));

ValidationContext context = new ValidationContext(p, null, null);
List<ValidationResult> results = new List<ValidationResult>();

bool valid = Validator.TryValidateObject(p, context, results, true);

答案 1 :(得分:-1)

尝试将元数据类移动到与Persona类相同的名称空间(如果尚未这样)。我遇到了类似的问题,并将我的元数据类移动到与我工作的L2S模型类相同的命名空间中。