C# - 按日期列对数据表进行排序,并且仅将前 10 条记录绑定到网格

发布于 2024-12-13 09:27:54 字数 135 浏览 2 评论 0原文

我绑定了一个数据表,其中包含来自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绻影浮沉 2024-12-20 09:27:54

您可以使用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 your DataView and bind the grid to the DataView.

see this question and answers for details, it looks very similar: Select top N rows AFTER sorting from Dataview in c#

哭泣的笑容 2024-12-20 09:27:54

这对你有用吗?

var newlist = (from f in list orderby by f.date select f).Take(10).ToList();

为了提供更多帮助,退货采取什么形式?列表、数组等。

Does this work out for you?

var newlist = (from f in list orderby by f.date select f).Take(10).ToList();

To help out more, what form does the return take? A list, an array, etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文