在LINQ中用2个属性分组

这是一个已经被问到的问题,但是这个问题只能使用2个属性,我需要使用3个属性,所以我复制了大部分文本。

假设我们有类似的课程

class Person { 
internal int PersonID; 
internal string car  ;
internal string friend  ;
}

现在我有一个这个类的列表:列出人物;

现在这个列表可以有多个相同PersonID的实例,例如。

persons[0] = new Person { PersonID = 1, car = "Ferrari" , friend = "Josh" }; 
persons[1] = new Person { PersonID = 1, car = "BMW" , friend = "Olof"     }; 
persons[2] = new Person { PersonID = 2, car = "Audi"  , friend = "Gustaf"   }; 

有没有一种方法可以通过personID进行分组并获得他拥有的所有车辆和朋友的列表? 例如。 预期的结果将是

class Result { 
   int PersonID;
   List<string> cars; 
   List<string> friends; 
}

从我迄今所做的事情来看:

IEnumerable resultsForDisplay = ResultFromSQL_Query.GroupBy(
    p => p.PersonId.ToString(),
    p => p.car,
    (key,  g) => new { PersonId = key, car = g.ToList()});

但现在我坚持在resultsForDisplay获取friend's数组


当然,您也可以对组g执行LINQ查询,例如:

IEnumerable<Result> resultsForDisplay = from q in ResultFromSQL_Query
    group q by q.PersonID into g
    select new Result {PersonID = g.Key,cars = g.Select(x => x.car).ToList(), friends = g.Select(x => x.friend).ToList()};

或者用lambda表达式:

IEnumerable<Result> results = persons.GroupBy(x => x.PersonID)
    .Select(g => new Result { PersonID = g.Key, cars = g.Select(x => x.car).ToList(), friends = g.Select(x => x.friend).ToList()};

因此,您可以对一个组执行任何LINQ查询(因此,该组的元素就像IEnumerable<>一样),就像.Select(..) ,还有.Sum(..) .Average(..) .Sum(..) .Average(..)和其他子查询,聚合等。

链接地址: http://www.djcxy.com/p/34291.html

上一篇: Group by in LINQ with 2 attribtes

下一篇: Get the intersect of two list with specific criteria