Is there any way I can set the default ModelBinder to one of my own?
In the Global.asax.cs:
public class MvcApplication : System.Web.HttpApplication { protected void Application_Start() { //... ModelBinders.Binders.DefaultBinder = new MyModelBinder(); } }