What are some useful things you can do with Mvc Modelbinders?
Posted
by
George Mauer
on Programmers
See other posts from Programmers
or by George Mauer
Published on 2012-04-12T19:57:26Z
Indexed on
2012/04/12
23:44 UTC
Read the original article
Hit count: 490
It occurs to me that the ModelBinder mechanism in ASP MVC
public interface IModelBinder {
object BindModel(System.Web.Mvc.ControllerContext controllerContext, System.Web.Mvc.ModelBindingContext bindingContext);
}
Is insanely powerful. What are some cool uses of this mechanism that you've done/seen?
I guess since the concept is similar in other frameworks there's no reason to limit it to Asp Mvc
© Programmers or respective owner