I have created 2 simple classes to represent an order and orderlines. I am now trying to create a report to display this data.
The data is presented via a viewmodel method
This returns the Order POCO with a property OrderLines.
In order to display this data, do I need to create a subreport against the orderlines?
If so, how do I connect this subreport to the OrderLines of the parent report?
The data is presented via a viewmodel method
[DataObjectMethod(DataObjectMethodType.Select)]
public
ReportOrderDetail GetReportOrderDetail()
{.....
This returns the Order POCO with a property OrderLines.
In order to display this data, do I need to create a subreport against the orderlines?
If so, how do I connect this subreport to the OrderLines of the parent report?