I have class which contains List:\[code\]public class Client { public string FirstName { get; set; } public string LastName { get; set; } public List<Address> Addresses { get; set; } }\[/code\]How I can to pass the object of this type from View to Controller?For example:\[code\]@Html.ActionLink("Edit", "Edit", item)\[/code\]where item is an object of Client type.By fact, FirstName and LastName passed successful, but Addresses passed as NULL.Thanks any help.