var list = GetListFromSomeWhere();
var list2 = GetListFromSomeWhere();
list.AddRange(list2);
....
...
var distinctedList = list.DistinctBy(x => x.ID).ToList();
More LINQ
en google code
O si no desea utilizar archivos DLL externa por alguna razón, usted puede utilizar este Distinct
sobrecarga:
public static IEnumerable<TSource> Distinct<TSource>(
this IEnumerable<TSource> source, IEqualityComparer<TSource> comparer)
Uso:
public class FooComparer : IEqualityComparer<Foo>
{
// Products are equal if their names and product numbers are equal.
public bool Equals(Foo x, Foo y)
{
//Check whether the compared objects reference the same data.
if (Object.ReferenceEquals(x, y)) return true;
//Check whether any of the compared objects is null.
if (Object.ReferenceEquals(x, null) || Object.ReferenceEquals(y, null))
return false;
return x.ID == y.ID
}
}
list.Distinct(new FooComparer());
Esto funcionó a la perfección aquí es mi aplicación:. Lista uniqueRows = inputRows.GroupBy (x => x.Id) .Elija (x => x.First()) ToList (); –
Baxter
¡Me alegra ayudar! Una nota: el '' en su 'ToList()' es redundante. Debería poder hacer '.ToList()' –
Tiene razón, trabaja con ToList() en lugar de ToList() –
Baxter