我需要将自定义的ModelBinder连接到MVC 3中的DI容器,但我无法使其工作.
所以.这就是我所拥有的:
具有构造函数注入服务的ModelBinder.
public class ProductModelBinder : IModelBinder{ public ProductModelBinder(IProductService productService){/*sets field*/} // the rest don't matter. It works. }
如果我像这样添加它,我的活页夹工作正常:
ModelBinders.Binders.Add(typeof(Product),new ProductModelBinder(IoC.Resolve<IProductService>()));
但这是做旧的方式,我不希望如此.
我需要的是如何将模型绑定器挂钩到我已注册的IDependencyResolver.
根据Brad Wilson的说法,秘密是使用IModelBinderProvider实现,但是对于如何连接它非常不清楚. (in this post)
有人有例子吗?
解决方法
在编写我的MVC 3应用程序时遇到了同样的情况.我最终得到了这样的东西:
public class ModelBinderProvider : IModelBinderProvider { private static Type IfSubClassOrSame(Type subClass,Type baseClass,Type binder) { if (subClass == baseClass || subClass.IsSubclassOf(baseClass)) return binder; else return null; } public IModelBinder GetBinder(Type modelType) { var binderType = IfSubClassOrSame(modelType,typeof(xCommand),typeof(xCommandBinder)) ?? IfSubClassOrSame(modelType,typeof(yCommand),typeof(yCommandBinder)) ?? null; return binderType != null ? (IModelBinder) IoC.Resolve(binderType) : null; } }
然后我在我的IoC容器中注册了这个(在我的情况下是Unity):
_container.RegisterType<IModelBinderProvider,ModelBinderProvider>("ModelBinderProvider",singleton());
这对我有用.