Is there any issues with modelbinding IEnumerable types to an MVC POST?
Some properties in my Model are not being bound upon a post to an action. Seems that properties o
It works fine with the IEnumarble type. I think the problem is the ToArray you are writing inside the For loop. (It's very not efficient either) change the for loop to foreach.
IEnumarble
ToArray
For
for
foreach
See this excellent answer how to achieve it.