I have data that will be generated by users at runtime by performing queries. The shape of the data is unknown because users can choose which fields to bring back.
The application is an ASP.NET MVC web app. The data will be .NET POCOs. However, each object could have properties that are collections of other objects.
I want to use the RDLC format for the reports so that I can leverage the PDF, Excel, Word, etc export functionality.
I envisage the data being displayed in a grid, with nested grids for the collection properties.
- What are my options for generating the RDLC data?
- Can RDLC handle nested tables/grids for my collection properties requirement?