从现在开始,我使用了出色的FluentValidation 库来验证我的模型类。在 Web 应用程序中,我也将它与jquery.validate插件一起使用来执行客户端验证。一个缺点是大部分验证逻辑在客户端重复,不再集中在一个地方。
出于这个原因,我正在寻找替代方案。有很多例子展示了使用数据注释来执行模型验证。它看起来很有希望。我找不到的一件事是如何验证依赖于另一个属性值的属性。
让我们以以下模型为例:
public class Event
{
[Required]
public DateTime? StartDate { get; set; }
[Required]
public DateTime? EndDate { get; set; }
}
我想确保EndDate
大于StartDate
。我可以编写一个扩展ValidationAttribute的自定义验证属性,以执行自定义验证逻辑。不幸的是,我找不到获取模型实例的方法:
public class CustomValidationAttribute : ValidationAttribute
{
public override bool IsValid(object value)
{
// value represents the property value on which this attribute is applied
// but how to obtain the object instance to which this property belongs?
return true;
}
}
我发现CustomValidationAttribute似乎可以完成这项工作,因为它具有ValidationContext
包含正在验证的对象实例的此属性。不幸的是,此属性仅在 .NET 4.0 中添加。所以我的问题是:我可以在 .NET 3.5 SP1 中实现相同的功能吗?
更新:
FluentValidation似乎已经支持ASP.NET MVC 2 中的客户端验证和元数据。
不过,如果可以使用数据注释来验证依赖属性,还是很高兴知道的。