| by Achyut Kendre | No comments

Model Binding and View Model

Example Link : https://drive.google.com/file/d/1SWHelMUiJLC7ekRcR1DzQkLgybmjuuWT/view?usp=sharing What is Model Binding? ASP.NET MVC model binding allows you to map HTTP request data with a model. It is the process of creating .NET objects using the data sent by the browser in an HTTP request. Model binding is a well-designed bridge between the HTTP request and the C# action […]

Read More
| by Achyut Kendre | No comments

What is ViewModel in ASP.NET Core?

View Model is dummy model that contains public properties those need to be represented in a View. View Model will be crated only for view. We can say it is just used to carry data from action to view or view back to action. View Model can be used in following situations – If you […]

Read More