LINQ에서 그룹화
다음과 같은 클래스가 있다고 가정 해 봅시다.
class Person {
internal int PersonID;
internal string car ;
}
이제이 클래스 목록이 있습니다. List<Person> persons;
이제이 목록에는 동일한 PersonID를 가진 여러 인스턴스가있을 수 있습니다. 예를 들면 다음과 같습니다.
persons[0] = new Person { PersonID = 1, car = "Ferrari" };
persons[1] = new Person { PersonID = 1, car = "BMW" };
persons[2] = new Person { PersonID = 2, car = "Audi" };
personID
그가 가지고있는 모든 자동차의 목록을 그룹으로 묶을 수있는 방법 이 있습니까?
예를 들어 예상 결과는 다음과 같습니다.
class Result {
int PersonID;
List<string> cars;
}
따라서 그룹화 후 다음을 얻습니다.
results[0].PersonID = 1;
List<string> cars = results[0].cars;
result[1].PersonID = 2;
List<string> cars = result[1].cars;
지금까지 내가 한 일에서 :
var results = from p in persons
group p by p.PersonID into g
select new { PersonID = g.Key, // this is where I am not sure what to do
누군가 나를 올바른 방향으로 안내해 주시겠습니까?
절대적으로-기본적으로 다음을 원합니다.
var results = from p in persons
group p.car by p.PersonId into g
select new { PersonId = g.Key, Cars = g.ToList() };
또는 비 쿼리 표현식으로 :
var results = persons.GroupBy(
p => p.PersonId,
p => p.car,
(key, g) => new { PersonId = key, Cars = g.ToList() });
기본적으로 그룹의 내용 (으로보기 IEnumerable<T>
)은 p.car
주어진 키에 대해 존재 하는 프로젝션 ( 이 경우) 에있는 값의 시퀀스입니다 .
GroupBy
작동 방식 에 대한 자세한 내용 은 주제에 대한 Edulinq 게시물을 참조하십시오 .
( 위에서 .NET 명명 규칙 을 따르기 PersonID
위해 이름 을 PersonId
로 변경 했습니다 .)
또는 다음을 사용할 수 있습니다 Lookup
.
var carsByPersonId = persons.ToLookup(p => p.PersonId, p => p.car);
그런 다음 각 사람의 자동차를 매우 쉽게 얻을 수 있습니다.
// This will be an empty sequence for any personId not in the lookup
var carsForPerson = carsByPersonId[personId];
var results = from p in persons
group p by p.PersonID into g
select new { PersonID = g.Key,
/**/car = g.Select(g=>g.car).FirstOrDefault()/**/}
var results = from p in persons
group p by p.PersonID into g
select new { PersonID = g.Key, Cars = g.Select(m => m.car) };
이것을 시도 할 수도 있습니다.
var results= persons.GroupBy(n => new { n.PersonId, n.car})
.Select(g => new {
g.Key.PersonId,
g.Key.car)}).ToList();
시험
persons.GroupBy(x => x.PersonId).Select(x => x)
또는
목록에서 반복되는 사람이 있는지 확인하려면
persons.GroupBy(x => x.PersonId).Where(x => x.Count() > 1).Any(x => x)
쿼리 구문 및 메서드 구문을 사용하여 작업 코드 샘플을 만들었습니다. 다른 사람들에게 도움이되기를 바랍니다. :)
.Net Fiddle에서 코드를 실행할 수도 있습니다.
using System;
using System.Linq;
using System.Collections.Generic;
class Person
{
public int PersonId;
public string car ;
}
class Result
{
public int PersonId;
public List<string> Cars;
}
public class Program
{
public static void Main()
{
List<Person> persons = new List<Person>()
{
new Person { PersonId = 1, car = "Ferrari" },
new Person { PersonId = 1, car = "BMW" },
new Person { PersonId = 2, car = "Audi"}
};
//With Query Syntax
List<Result> results1 = (
from p in persons
group p by p.PersonId into g
select new Result()
{
PersonId = g.Key,
Cars = g.Select(c => c.car).ToList()
}
).ToList();
foreach (Result item in results1)
{
Console.WriteLine(item.PersonId);
foreach(string car in item.Cars)
{
Console.WriteLine(car);
}
}
Console.WriteLine("-----------");
//Method Syntax
List<Result> results2 = persons
.GroupBy(p => p.PersonId,
(k, c) => new Result()
{
PersonId = k,
Cars = c.Select(cs => cs.car).ToList()
}
).ToList();
foreach (Result item in results2)
{
Console.WriteLine(item.PersonId);
foreach(string car in item.Cars)
{
Console.WriteLine(car);
}
}
}
}
결과는 다음과 같습니다.
1 페라리 BMW 2 아우디 ----------- 1 페라리 BMW 2 아우디
이 시도 :
var results= persons.GroupBy(n => n.PersonId)
.Select(g => new {
PersonId=g.Key,
Cars=g.Select(p=>p.car).ToList())}).ToList();
그러나 성능면에서 다음과 같은 방법이 메모리 사용에 더 좋고 최적화되어 있습니다 (배열에 수백만 개와 같은 훨씬 더 많은 항목이 포함 된 경우).
var carDic=new Dictionary<int,List<string>>();
for(int i=0;i<persons.length;i++)
{
var person=persons[i];
if(carDic.ContainsKey(person.PersonId))
{
carDic[person.PersonId].Add(person.car);
}
else
{
carDic[person.PersonId]=new List<string>(){person.car};
}
}
//returns the list of cars for PersonId 1
var carList=carDic[1];
이를 수행하는 다른 방법은 다음 PersonId
과 persons
같이 구별 및 그룹 조인을 선택하는 것 입니다 .
var result =
from id in persons.Select(x => x.PersonId).Distinct()
join p2 in persons on id equals p2.PersonId into gr // apply group join here
select new
{
PersonId = id,
Cars = gr.Select(x => x.Car).ToList(),
};
또는 유창한 API 구문과 동일합니다.
var result = persons.Select(x => x.PersonId).Distinct()
.GroupJoin(persons, id => id, p => p.PersonId, (id, gr) => new
{
PersonId = id,
Cars = gr.Select(x => x.Car).ToList(),
});
GroupJoin produces a list of entries in the first list ( list of PersonId
in our case), each with a group of joined entries in the second list (list of persons
).
var results = persons.GroupBy(n => n.PersonId).Select(r => new Result {PersonID = r.Key, Cars = r.ToList() }).ToList()
참고URL : https://stackoverflow.com/questions/7325278/group-by-in-linq
'Nice programing' 카테고리의 다른 글
함수에서 여러 값을 반환하려면 어떻게합니까? (0) | 2020.09.27 |
---|---|
리플렉션을 사용하여 제네릭 메서드를 호출하는 방법은 무엇입니까? (0) | 2020.09.27 |
최대 요청 길이를 초과했습니다. (0) | 2020.09.27 |
Python이 해석되는 경우 .pyc 파일은 무엇입니까? (0) | 2020.09.27 |
Objective-C의 상수 (0) | 2020.09.27 |