I have a Web API from which I get a list or Objects, Each Object has a List of subobjects inside of it. I would like to build a report that for each element of the top list fills 2 textboxes and fills a table with the sublist, and copy that group of elements for each member of said parent list.
Can this be done?
List<Object1> is recieved from the datasource
Object1 -> FirstName, LastName, DoB, List<Object2>
Object2 -> Email, Number etc...