Map From ValueProvider To Model In BindModel?
In an MVC2 app, I have various controller methods that will be handling incoming JSON data. I created a custom JSON ValueProvider that parses the data and makes the data available for binding. I'd like to have various controller methods have as param type an (Edit/From/Whatever) Model to which to map the parsed JSON values. I have adapt...