How to merge two lists using LINQ like the following:
class Person
{
public int ID { get; set;}
public string Name { get; set;}
public Person Merge( Person p)
{
return new Person { ID = this.ID, Name = this.Name + " " + p.Name };
}
}
I have two List of person:
list1:
1, A
2, B
list2:
2, C
3, D
I want the result like the following
result:
1, A
2, B C
3, D
Any help!
I would strongly recommend against using string-concatenation to represent this information; you will need to perform unnecessary string-manipulation if you want to get the original data back later from the merged list. Additionally, the merged version (as it stands) will become lossy if you ever decide to add additional properties to the class.
Preferably, get rid of the
Mergemethod and use an appropriate data-structure such as a multimap that can each map a collection of keys to one or more values. TheLookup<TKey, TElement>class can serve this purpose:Anyway, to answer the question as asked, you can concatenate the two sequences, then group persons by their
IDand then aggregate each group into a single person with the providedMergemethod:EDIT: Upon re-reading, just realized that a concatenation is required since there are two lists.