I have an ASP.Net MVC application with a model which is several layers deep containing a collection.
I believe that the view to create the objects is all set up co
Maybe lack of Bind attribute is the case:
[AcceptVerbs(HttpVerbs.Post)] public ActionResult Create ([Bind] Person person) { // Do stuff to validate and add to the database }