我想在asp.net mvc 4中使用autofac设置ModelBinders.Binders.DefaultBinder=new SmartBinder(),正确的方法是什么?
在您的Global.asax.cs中;
protected void Application_Start()
{
System.Web.Mvc.ModelBinders.Binders.DefaultBinder = new SmartBinder();
}
不需要Autofac。