DevExpress XtraReports 服务器端过滤
我正在尝试 DevExpress XtraReports,我有一个简单的报告,其中包含一些通过前端应用程序传递的过滤条件和参数。我想知道这个过滤器是附加到 SQL 生成和评估的服务器端(高效)还是在返回数据后在客户端执行过滤器?如果是在客户端完成的,我将需要将报告转换为使用存储过程,否则它们在大型数据源上效率会太低。
I am trying out DevExpress XtraReports and I have a simple report with a few filter conditions and parameters passed via the front end application. I want to know is this filter appended to the SQL generated and evaluated server side (efficient) or is the filter performed client side once the data has been returned? If it is done client side I will need to convert the reports to use stored procs or else they will be too inefficient on large data sources.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XtraReports Suite 支持两种不同的过滤类型:客户端和服务器端。我们的文档中描述了所有这些选项:
过滤数据
因此,您可以实现服务器端过滤。另请参阅如何:在数据源级别筛选数据主题。
The XtraReports Suite supports two different filtration kinds: client side and server side. All these options are described in our documentation at:
Filtering Data
So, you can implement the server side filtration. Please also refer to the How to: Filter Data at a Data Source's Level topic.