Hello there,
I have a report with one table a an object data source.
The object source is simple consuming an OData service (something like select ALL from List).
During Preview mode I can see the same item returned by the OData service twice and during execution the table is empty.
The OData Service is workig fine because is tested with LinqPad, plus I can see the same data twice during preview mode, so is nothing to do with the OData service.
The service returns two items in total.
The code to load and execute the report is simple:
var uriReportSource = new Telerik.Reporting.UriReportSource ();
uriReportSource.Uri = "Reports/" + "deleteME.trdx";
reportViewer1.ReportSource = uriReportSource;
reportViewer1.DataBind();
Thanks,
I have a report with one table a an object data source.
The object source is simple consuming an OData service (something like select ALL from List).
During Preview mode I can see the same item returned by the OData service twice and during execution the table is empty.
The OData Service is workig fine because is tested with LinqPad, plus I can see the same data twice during preview mode, so is nothing to do with the OData service.
The service returns two items in total.
The code to load and execute the report is simple:
var uriReportSource = new Telerik.Reporting.UriReportSource ();
uriReportSource.Uri = "Reports/" + "deleteME.trdx";
reportViewer1.ReportSource = uriReportSource;
reportViewer1.DataBind();
Thanks,