Hi everyone,
I have the following complex model: Category - has -> List which has -> List
I am trying to make a create action where I can pull all the existing categories and insert for each category one List all together, including the sub items. For example: -Cat1 -- NewItemGroup1 --- NewItem1 --- NewItem2 --- NewItem3 --- NewItem4
-Cat2 -- NewItemGroup2 --- NewItem1 --- NewItem2 --- NewItem3 --- NewItem4
My questions, can I achieve this using the default modelbinder? or should I use something else? and how much work would that add :) ?
Thanks!