I've used custom model binders which are configured in the Global.asax file. Is it possible to only use this model binder under certain areas of the application?
public class CreatorModelBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
//what logic can i put here so that this only happens when the controller is in certain area- and when it's not in that area- then the default model binding would work
var service = new MyService();
if (System.Web.HttpContext.Current != null && service.IsLoggedIn)
return service.Creator;
return new Creator {};
}
}
If you want to invoke the default model binder you should derive from
DefaultModelBinder
instead of directly implementing theIModelBinder
interface.And then: