I am trying to create an edit form for a collection of items. The List is null and when I check the ModelState its Valid property is "true" and it has 0 keys. There are no required properties on the People entity.
View
@using(Html.BeginForm("UpdatePeople", "People", FormMethod.Post }))
{
@for (var i = 0; i < Model.People.Count; i++)
{
<div>
@Html.TextBoxFor(t => t.People[i].FirstName)
</div>
}
}
Controller
[HttpPost]
public ActionResult UpdatePeople(List<People> items)
{
// items is null
}