C# - 按日期列对数据表进行排序,并且仅将前 10 条记录绑定到网格
我绑定了一个数据表,其中包含来自 SOAP 调用的数据。不幸的是,该调用返回我正在获取的任何实体的所有记录,并且目前无法指定要返回的记录数或任何其他参数。
如何最有效地按日期列对该数据表进行排序并将其绑定到网格,同时仅显示前 10 条记录?
I bind a datatable that contains data from a SOAP call. Unfortunately, the call returns all records for whatever entity i'm fetching and there's no way at the moment of specifying number of records to return or any other argument.
How could I most efficiently sort this datatable by a date column and bind it to a grid while only showing the top 10 records?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
DataView
,以便可以排序并仅获取前 10 条记录。基本上,您不是将网格绑定到
DataTable
,而是对DataView
进行过滤/排序,并将网格绑定到DataView
。有关详细信息,请参阅此问题和答案,它看起来非常相似: 从 C# 中的 Dataview 排序后选择前 N 行
You can use a
DataView
so that you can sort and take only the top 10 records.basically instead of binding the grid to the
DataTable
you filter/sort yourDataView
and bind the grid to theDataView
.see this question and answers for details, it looks very similar: Select top N rows AFTER sorting from Dataview in c#
这对你有用吗?
为了提供更多帮助,退货采取什么形式?列表、数组等。
Does this work out for you?
To help out more, what form does the return take? A list, an array, etc.