Hello,
I have problems with binding object to the report.
I have an Order class and OrderLine class. one order can contains multiple orderLines. So in my Order class, I have a List<OrderLine> property.
Now I create a List<Order> object and I want to bind my List<Order> to my report. And I add a group to the report. I want to bind the Order's properties like OrderID, orderDate,..., to the Group header section, and display the OrderLine list's properties to the details.
The problems is it can display the properties defined in Order, but it can't display the properties in OrderLine object in the detail section.
Thanks in advance
I have problems with binding object to the report.
I have an Order class and OrderLine class. one order can contains multiple orderLines. So in my Order class, I have a List<OrderLine> property.
Now I create a List<Order> object and I want to bind my List<Order> to my report. And I add a group to the report. I want to bind the Order's properties like OrderID, orderDate,..., to the Group header section, and display the OrderLine list's properties to the details.
The problems is it can display the properties defined in Order, but it can't display the properties in OrderLine object in the detail section.
Thanks in advance