InterviewSolution
Saved Bookmarks
| 1. |
What is the use of View Model in ASP.Net MVC? |
|
Answer» View Model is a plain class with properties, which is used to bind it to strongly typed view. View Model can have the validation rules defined for its properties using data annotations. |
|