gpt4 book ai didi

asp.net - linq orderby 升序?

转载 作者:行者123 更新时间:2023-12-02 14:10:40 28 4
gpt4 key购买 nike

您好,我正在使用以下内容对表适配器返回的数据表的结果进行排序

 Dim spots = myDataTable.Where(Function(t) t.UserID = 1).OrderByDescending(Function(t) t.Title)

问题是,我还需要对相同的数据表进行 OrderByAscending。但据我所知,它并没有将其作为一种选择。我确信有一种方法可以将其升序排序。谁能告诉我怎么做?

最佳答案

OrderBy将按升序排列。

Dim spots = myDataTable.Where(Function(t) t.UserID = 1) _
.OrderBy(Function(t) t.Title )

或者,如果您需要按第二个值排序,请使用 ThenBy

Dim spots = myDataTable.Where(Function(t) t.UserID = 1) _
.OrderByDescending(Function(t) t.Title ) _
.ThenBy(Function(t) t.OtherField )

关于asp.net - linq orderby 升序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/880596/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com