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

前端之家收集整理的这篇文章主要介绍了c# – LINQ:获取具有给定属性的最大值的行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在一个名为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 原文链接:https://www.f2er.com/csharp/97641.html

猜你在找的C#相关文章