gpt4 book ai didi

c# - LINQ:获取具有给定属性最大值的行

转载 作者:太空狗 更新时间:2023-10-29 20:57:50 24 4
gpt4 key购买 nike

我有一堆行分组在一个名为 MyID 的属性上。现在我想要每一组中 StatusDate 属性在该组中最高的一行。

这就是我想出的。

rows.Select(x => x.Where(y => y.StatusDate == x.Max(z => z.StatusDate)).First())

再多解释一下:

rows.Select(x => // x is a group
x.Where(y => // get all rows in that group where...
// the status date is equal to the largest
// status date in the group
y.StatusDate == x.Max(z => z.StatusDate)
).First()) // and then get the first one of those rows

有没有更快或更惯用的方法来做到这一点?

最佳答案

一种替代方法是使用:

rows.Select(x => x.OrderByDescending(y => y.StatusDate).First());

...并检查查询优化器是否知道它真的不需要对所有内容进行排序。 (这在 LINQ to Objects 中将是灾难性的,但在这种情况下您可以使用 MoreLINQ 中的 MaxBy :)

(为之前的版本道歉 - 我没有完全理解分组位。)

关于c# - LINQ:获取具有给定属性最大值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1926919/

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