I\'m using a model that contains a List as a property. I\'m populating this list with items i grab from SQL Server. I want the List to be hidden in the view and passed to th
You can take a look on this solution.
Put only HiddenFor inside the EditorTemplate.
And in your View put this: @Html.EditorFor(model => model.MyList)
@Html.EditorFor(model => model.MyList)
It should works.