Because the XtraReport designer isn't into object data sources, I first used a DB table to mimic the data structure of my report data, and the report works nicely like that. However, when I try and assign a data source in code, like below, I get an empty report. What could I be doing wrong?
_report.DataSource =
ProductionDataHelper.GetReportData(deptId, deptDateFilter.SelectedStartDate ?? DateTime.Now).OrderBy(
r => r.DeptDisplayIndex ?? int.MaxValue).ThenBy(r => r.KpiDisplayIndex ?? int.MaxValue).ThenBy(r => r.Category);
KpiReportViewer.Report = _report;
I have set the design time DataSource property to null, and I know that GetReportData works because the previous report component, from Telerik, displays a four page report. Report date returns the result of ToList on an EF query.