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 a
I investigated this theme a year ago, searching for an object model to generate RDLs in memory. There wasn’t one, but there are rumors about. A quick investigation nowadays: An object model called RDLOM exists, but isn’t really supported by Microsoft.
My actual approach uses a self generated object model build upon RDLs scheme.
This is a less-than-ideal solution, because you need to know the generated object in detail and because the object creation code is really ugly. But the other workarounds I found in my investigation use XML or XSLT directly to generate the RDL and they are poor in their own way.