I can't seem to find a way to load data using entity framework and async queries. I see how they are creating a data source manually in the RDLC Report docs, but that's not too helpful when trying to pull data from SQL.
I tried passing the data using the javascript function, but it doesn't make it to the controller.
RenderViewer: function (elementID, reportViewerOptions) {
$("#" + elementID).boldReportViewer({
reportPath: reportViewerOptions.reportPath,
reportServiceUrl: reportViewerOptions.serviceURL,
dataSources: reportViewerOptions.dataSources
});
}
What am I missing?