从 WebMethod 返回分页结果?
我需要创建 WebMethod 来从数据库获取一些数据并将其返回给客户端。
现在,假设数据量很大,所以我想分部分获取和返回数据。
有没有办法在Webmethod中使用yield return?
据我所知,无法在 WebMethods 中返回泛型类型,但我也无法使用非泛型 IEnumerable。
我怎样才能做到这一点?
I need to create WebMethod that will get some data from db and return that to the client.
Now, assume that the amount of data is huge, so I'd like to take and return data in parts.
Is there any way to use yield return in Webmethod?
As I know there is no way to return generic types in WebMethods, but I couldn't use non-generic IEnumerable as well.
How can I accomplish that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您不能从 WebMethod 中产生返回。但是您可以向方法调用添加两个参数以允许分页结果:
变为:
No, you can't yield return from a WebMethod. But you can add two parameters to the method call to allow paged results:
Becomes: