Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using LINQ to merge a list of objects

Tags:

c#

linq

I have two lists of objects, using Linq I would like to merge them, but where the two lists contain objects with the same key, I only want the one with the greatest LastUpdated Value.

I thought that I could somehow get a list grouping by key a with max(LastUpdated) then join back to the list joining on key and LastUpdated, but there must be a more efficient way...

List<MyObject> lstListA = new List<MyObject>;
List<MyObject> lstListB = new List<MyObject>;

public class MyObject
{
    public string Key {get;set;}
    public string Value {get;set;}
    public DateTime LastUpdated {get;set;}
}
like image 494
Jeremy Avatar asked Feb 19 '10 17:02

Jeremy


2 Answers

One option, using DistinctBy from MoreLINQ:

var query = lstListA.Concat(lstListB)
                    .OrderByDescending(x => x.LastUpdated)
                    .DistinctBy(x => x.Key);
like image 170
Jon Skeet Avatar answered Oct 20 '22 01:10

Jon Skeet


Classic pick-a-winner.

IEnumerable<MyObject> query = lstListA
  .Concat(lstListB)
  .GroupBy(x => x.Key)
//now work with each group to pick a winner
  .Select(g => g.OrderByDescending(x => x.LastUpdated).First())
like image 26
Amy B Avatar answered Oct 20 '22 02:10

Amy B