August 2014
Intermediate to advanced
688 pages
18h 5m
English
CHAPTER 14
![]()
Understanding Parameter and Model Binding
In the MVC framework, model binding is the process used to extract values from the HTTP request to provide values for the arguments needed to invoke action methods. In Web API, there are two processes that do this work: parameter binding and model binding. They work in loosely the same way model binding in the MVC framework works, but they are optimized to improve the performance of request handling for web services—and this means there are some important differences to the approach you are used to using.
In any complex Web API project, you will spend a lot of time dealing with the parameter ...