My model is simple, one client can have many phone numbers :
I have represented this in Entity Framework
For the collection you can use something like this:
@for(int i = 0; i < Model.PhoneNumbers.Count; i++) { @Html.EditorFor(model => model.PhoneNumbers[i]) @Html.ValidationMessageFor(model => model.PhoneNumbers[i]) }