How we can bind a model to list in mvc 4 ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Create a MVC Project, leave everything default and add Product in your Models folders with the following (very simple) code:
Then add a ProductsController (in the Controllers folder) with the following code:
Source: http://kristofmattei.be/2009/10/19/asp-net-mvc-model-binding-to-a-list/ |
|||
|
|
|
http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx I found it myself on phill hack article.. |
||||
|
|
|
Your model can contain collections and you can loop around them in the view.
|
|||
|
|
