.rdlc reporting bound to Object Data Source in Three layer Application
- by Saeedouv
Hi, i have the following situation, i have a Reporting layer(stand alone) in asp.net application(NOT website, this means NO App_Code folder exists), and i want just to create Object Data Source to take an Object in a separate layer(lets say from Data Access Layer), and then to use that Object Data Source to create a report, i have spent my whole day working around that, tons of work around's and articles on the web, but does not mention what i really want to do, any answer is appriciated...
just to make things more clear here, assume the following:
i have a solution with the follwoing layers,
UI
Reporting(has NO Employees object) just a reference
Business Logic
Data Access Layer(Employees--GetEmployees(),
all i need is as mentioned above, i want to create Object Data Source from Reporting layer, to take Employee object from DAL, and then use it's GetEmployees method to be added to
report, i think its more clear now, since also Reporting layer has NO App_Code folder.