I'm currently investigating the use of Stimulsoft and we're using Entity Framework with Self-Tracking Entities as datasource in our project. So we want to also use this as datasource to our reports. The POCO objects that STE generates is placed in a seperate assembly that is used both on the server and the client of our N-Tier application and is transferred between these using WCF. The client has the responsibility to generate reports based on the data that is retrieved from the server.
Currently, when I'm testing this I have a problem which I can't find any solution and is a showstopper.
I load a report in which I set the datasource to my result (An order with orderlines which has article on each orderline) from the server using RegData (I can't use RegBusinessObject since it doesn't include my navigation properties).
When I try to render the report I get the following message in an exception:
So, my question is why? From the error message it seems that the autogenerated report code need to reference my assembly that contains my STE-POCO objects, but I can't find any way to do this. I know that RegBusinessObject works without this, but I can't use this since I need data in the navigation properties of my Order, OrderLine and Article in my report which RegBusinessObject doesn't expose to me.The type or namespace name '' could not be found (are you missing a using directive or an assembly reference?)
So, how can I solve this critical problem?
Thanks for any solutions,
--Rune