简体   繁体   中英

LINQ group by and getting latest value

Say I have a structure like:

class SomeObject
   Public Name as String
   Public Created as Date
   ...
end class

I have a List(of SomeObject), which has multiple entries for each name with different times. I'd like to select the newest (largest Created value) object for each Name.

Given:

Name   Created
A      2010-04-16     *
A      2010-04-15
B      2010-04-12
B      2010-04-13     *
C      2010-04-16     *

I'd like to pick the objects with the * beside them.

Is this possible using LINQ?

It is:

var maxObjects =
    from o in myList
    group o by o.Name into g
    select new { Name = g.Key, Created = g.Max(o => o.Created) };

See 101 Linq samples to see how Linq can be used.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM