LINQ를 사용하여 두 개체 목록 병합
데이터 관리와 같은 시나리오에서는 여러 개체 목록을 결합해야 하는 상황이 발생할 수 있습니다. 두 개의 Person 객체 목록이 있는 특정 인스턴스를 고려해 보겠습니다.
<br>class Person<br>{</p> <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">string Name; int Value; int Change;
}
List< ;사람> list1;
목록<사람> list2;
우리의 목표는 이 두 목록을 새로운 List
Linq Union 방법 사용
이 목록을 병합하는 간단한 방법 중 하나는 Linq 확장 방법 Union을 사용하는 것입니다. . 이 메서드는 두 시퀀스의 요소를 결합하고 새 시퀀스를 반환합니다. 예:
<br>var mergedList = list1.Union(list2).ToList();<br>
기본적으로 Union 메서드는 Person 클래스의 Equals 및 GetHashCode 메서드를 사용하여 중복 요소를 확인합니다. 그러나 이름과 같은 특정 속성을 기준으로 사람을 비교하려면 Person 클래스에서 이러한 메서드를 재정의할 수 있습니다.
/// <summary> /// Checks if the provided object is equal to the current Person /// </summary> /// <param name="obj">Object to compare to the current Person</param> /// <returns>True if equal, false if not</returns> public override bool Equals(object obj) { // Try to cast the object to compare to to be a Person var person = obj as Person; return Equals(person); } /// <summary> /// Returns an identifier for this instance /// </summary> public override int GetHashCode() { return Name.GetHashCode(); } /// <summary> /// Checks if the provided Person is equal to the current Person /// </summary> /// <param name="personToCompareTo">Person to compare to the current person</param> /// <returns>True if equal, false if not</returns> public bool Equals(Person personToCompareTo) { // Check if person is being compared to a non person. In that case always return false. if (personToCompareTo == null) return false; // If the person to compare to does not have a Name assigned yet, we can't define if it's the same. Return false. if (string.IsNullOrEmpty(personToCompareTo.Name) return false; // Check if both person objects contain the same Name. In that case they're assumed equal. return Name.Equals(personToCompareTo.Name); }
또는 IEqualityComparer를 구현하는 비교자 클래스를 만들 수도 있습니다. 자신만의 비교 기준을 정의하는 인터페이스입니다. 그런 다음 이 비교자를 Union 메서드의 두 번째 매개 변수로 지정할 수 있습니다.
위 내용은 LINQ를 사용하여 두 개인 개체 목록을 병합하고 값을 결합하고 변경 사항을 계산하여 중복 항목을 처리하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!