im rendering locally, i placed the dataset into the dataaccess tier of my solution. how can I access it from RDLC?
im rendering locally, i placed the dataset into the dataaccess tier of my solution.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
While I am not sure how to answer your question directly, I ran into the same problem myself and here was my solution:
In C# I just acessed the report locally and overrid the datasource with whatever data I wanted to provide:
Then in the XML of the RDLC file, I just specified a dummy data source and then manually set the values of my own dataset:
This has worked great for me.