ASP.NET MVC: How to display strongly typed view model, containing list of items, which also contain
- by Sam Delaney
Hi, I'm building an app using ASP.NET MVC which I want to use a strongly type view model, which contains a List called items which contains an id int and itemName string. The view model also conatins a List called people, and the Person class contains a List.
The way I want to display the information is as a table, with each row having a column…