Populate List<Objects> From Mvc 3 view
问题 I Have a Viewmodel based on Nominees . And i can have Multiple Nominees for the viewmodel. I want to populate the Ilist From the view . Here are my viewmodels public class DebitViewModel:IValidatableObject { public string AgentName { get; set; } public Debit Debit { get; set; } public Policy Policy { get; set; } public PolicyType PolicyType { get; set; } public Customer Customer { get; set; } public IList<PolicyType> PolicyTypes { get; set; } public List<Nominee> Nominees { get; set; } public