我需要一个可以与 System.ComponentModel.DataAnnotations v 3.5 一起使用的 DataAnnotationsModelBinder
我在 codeplex 上找到了一个,但它适用于 DataAnnotations 的 v 0.99,它不适用于 v 3.5,而且我的 xVal 不适用于DataAnnotations v 0.99,所以我有点卡住了
问问题
319 次
1 回答
2
这是一个相当幼稚的模型活页夹,但它可能是您正在寻找的。
public class DataAnnotatedModelBinder : IModelBinder
{
private IModelBinder _defaultBinder = new DefaultModelBinder();
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var boundInstance = _defaultBinder.BindModel(controllerContext, bindingContext);
if (boundInstance != null) {
PerformValidation(boundInstance, bindingContext);
}
return boundInstance;
}
protected void PerformValidation(object instance, ModelBindingContext context)
{
var errors = GetErrors(instance);
if (errors.Any())
{
var rulesException = new RulesException(errors);
rulesException.AddModelStateErrors(context.ModelState, null);
}
}
public static IEnumerable<ErrorInfo> GetErrors(object instance)
{
return from prop in TypeDescriptor.GetProperties(instance).Cast<PropertyDescriptor>()
from attribute in prop.Attributes.OfType<ValidationAttribute>()
where !attribute.IsValid(prop.GetValue(instance))
select new ErrorInfo(prop.Name, attribute.FormatErrorMessage(String.Empty), instance);
}
}
于 2009-11-16T20:38:41.003 回答