如何为 RDLC 报表设计器和 ReportViewer 只使用一个数据集?
使用 VS 2010 报表设计器设计 rdlc 报表时,图表等报表项目需要数据集。设计报表后,我将 ReportViewer 添加到 Web 表单,它需要自己的所有数据源。如何将已耦合到报表的数据集连接起来,而无需在查看器页面中复制 DAL 功能?
When designing an rdlc report using the VS 2010 report designer, report items such as charts demand a dataset. After designing the report, I add a ReportViewer to a webform, and it demands all of its own datasources. How do I hook up the DataSet I have coupled to the report without duplicating the DAL functionality in the viewer page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将类型化数据集添加到您的项目中,并根据 ReportViewer 中的要求添加具有架构的数据表,通常数据表的架构是数据库中视图的架构。
这是关于此的很好的教程。
Add a Typed data-set to your project and add data-tables with schema as required in ReportViewer, generally the schema of data-tables would be that of views from database.
Here's a good tutorial on this.