Reputation: 355
I am doing a analysis on rdlc reports using Visual Studio. Is there a way I can provide a dynamically generated data set instead of database and tables. This way I can use the index built on entities rather than directly querying from the database.
Upvotes: 0
Views: 483
Reputation: 11115
Yes, you can pass a Dataset to ReportDataSource either generated/populated dynamically or filled with data taken from your database.
Upvotes: 1