Hi Guys ,
I want to disable model binding for a particular class , to be more specific i don't want certain data property of a class to be set by the default model binding .
eg . i have height and width property of a class , which i want to be explicitly set by the user
like model.height = xxx ;
the value should not be set by default model binders even when i pass the model to the action method.
is there a way to do so ?