En utilisant .Net 3.5Range DataAnnotation ne semble pas fonctionner en .Net 3.5
J'ai une gamme d'attributs (System.ComponentModel.DataAnnotations) sur une propriété ...
[Range(0, 5, ErrorMessage = "Weight must be between 0 and 5")]
public virtual double Weight{ get; set; }
Et J'ai une méthode Valider dans la classe qui vérifie la validation des attributs ...
protected virtual void Validate()
{
var type = this.GetType();
foreach (var property in type.GetProperties())
{
foreach (ValidationAttribute attribute in
property.GetCustomAttributes(typeof(ValidationAttribute),true))
{
if(!attribute.IsValid(property.GetValue(this, null)))
{
BrokenRules.Add(attribute.ErrorMessage);
}
}
}
}
public virtual bool IsValid()
{
return GetBrokenRules().Count == 0;
}
Et je un test NUnit qui teste la validation ...
[TestCase(-.1, Result = false)] // fails
[TestCase(0.0, Result = true)]
[TestCase(5.0, Result = true)]
[TestCase(5.1, Result = false)] // fails
public bool ItValidatesWeight(double weight)
{
_ornament.Weight = weight;
return _ornament.IsValid();
}
Les attributs obligatoires fonctionnent correctement mais sur la classe et test correctement, mais les attributs Range ne le sont pas. Aucune suggestion?