Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 WPF 中的报表查看器。
我有在服务器端生成的动态 sql 查询。然后我将此查询传递给存储过程并执行并返回结果。
问题 :
我想使用这个存储过程来生成报告。
提前致谢
我在网上搜索了很多,但所有使用静态查询的存储过程的解决方案。为了解决这个问题,我使用了以下步骤:-
1.)在存储过程中进行静态查询。
2.)对数据集使用存储过程。
3.)将此数据集与 .rdlc 文件绑定。
4.)构建项目。
5.) 将存储过程更改为前一个。
6.) 现在刷新数据集。
你现在得到工作报告:-)