Hello
My report has a lot of Linq query to display the collection into multiple tables of the report.
by reference http://www.telerik.com/community/forums/reporting/telerik-reporting/linq-or-business-object-datasource.aspx Described only as a binding collection in a single table.
I also report to the class of collections of multiple properties.
How are they tied to other tables.
that appear in the order.
My report has a lot of Linq query to display the collection into multiple tables of the report.
by reference http://www.telerik.com/community/forums/reporting/telerik-reporting/linq-or-business-object-datasource.aspx Described only as a binding collection in a single table.
I also report to the class of collections of multiple properties.
How are they tied to other tables.
that appear in the order.
public
partial
class
BusinessObjectsReport : Report
{
public
BusinessObjectsReport()
{
/// <summary>
/// Required for telerik Reporting designer support
/// </summary>
InitializeComponent();
this
.DataSource = Collection_1
as
IEnumerable<item1>;
//(it appears)
this
.Table_2.DataSource = Collection_2
as
IEnumerable<item2>;
//(how to bring?)
this
.Table_3.DataSource = Collection_3
as
IEnumerable<item3>;
//(how to bring?)
this
.Table_4.DataSource = Collection_4
as
IEnumerable<item4>;
//(how to bring?)
}
}
Give an example of a design report, please