Hard Working Model Binder
The job of a model binder in ASP.NET MVC is to take pieces of data in an HTTP request and place them into objects. It's easy to sense a model binder at work when you use one of the Update API's. bool success = TryUpdateModel(movie); // here
// .. or ...
try
{
UpdateModel(movie); // here,...
[read more]
Submit a review:
Login required.