如何在 RDLC 中引用来自不同程序集/库的数据集?
在本地渲染时,我将数据集放入解决方案的数据访问层中。我如何从 RDLC 访问它?
im rendering locally, i placed the dataset into the dataaccess tier of my solution. how can I access it from RDLC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然我不确定如何直接回答你的问题,但我自己也遇到了同样的问题,这是我的解决方案:
在 C# 中,我只是在本地访问报告并使用我想要提供的任何数据覆盖数据源:
然后在 XML 中在 RDLC 文件中,我只是指定了一个虚拟数据源,然后手动设置我自己的数据集的值:
这对我来说非常有用。
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.