Dear all,
I am fine to create and run most of my direct reports, now I have moved to the complex ones.
By complex I mean that contain a complex logic to combine the who;e data needed for the report.
I first create a class to bind to my report object, that will hold all my data.
I then define an IEnumerable<myclass> GetData method to fetch the data:
1- The method first call another method marked with [invoke] to populate the primary data as IEnumerable<myclass>
2- The method then add new entities to my IEnumerable variable holding my initial values.
and so on ..
When I call the method that doesn't require any additional data to be added to my initial IEnumerable variable, I am fine & the report is displaying the data, BUT if the scenario require additional data to be added ... the report doesn't display anything.
What is wrong with this ...
Regards
I am fine to create and run most of my direct reports, now I have moved to the complex ones.
By complex I mean that contain a complex logic to combine the who;e data needed for the report.
I first create a class to bind to my report object, that will hold all my data.
I then define an IEnumerable<myclass> GetData method to fetch the data:
1- The method first call another method marked with [invoke] to populate the primary data as IEnumerable<myclass>
2- The method then add new entities to my IEnumerable variable holding my initial values.
and so on ..
When I call the method that doesn't require any additional data to be added to my initial IEnumerable variable, I am fine & the report is displaying the data, BUT if the scenario require additional data to be added ... the report doesn't display anything.
What is wrong with this ...
Regards