In this chapter, we will learn about different ways we can customize default behavior to obtain values for the parameters bound to our actions. We will learn how to create our own model binder, modify the place from which a parameter value is bound, and exclude parameters from the binding process.
What Is Model Binding?
Model binding in Web API is the process of mapping data received in an HTTP request to a model or a parameter in a controller action. It allows the framework to automatically populate objects ...