19

是否可以为泛型类型创建模型绑定器?例如,如果我有一个类型

public class MyType<T>

有什么方法可以创建适用于任何类型的 MyType 的自定义模型绑定器?

谢谢,内森

4

1 回答 1

27

创建一个modelbinder,覆盖BindModel,检查类型并做你需要做的事情

public class MyModelBinder
    : DefaultModelBinder {

    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) {

         if (HasGenericTypeBase(bindingContext.ModelType, typeof(MyType<>)) { 
             // do your thing
         }
         return base.BindModel(controllerContext, bindingContext);
    }
}

在 global.asax 中将模型绑定器设置为默认值

protected void Application_Start() {

        // Model Binder for My Type
        ModelBinders.Binders.DefaultBinder = new MyModelBinder();
    }

检查匹配的通用基础

    private bool HasGenericTypeBase(Type type, Type genericType)
    {
        while (type != typeof(object))
        {
            if (type.IsGenericType && type.GetGenericTypeDefinition() == genericType) return true;
            type = type.BaseType;
        }

        return false;
    }
于 2009-09-28T13:36:59.173 回答