-
Notifications
You must be signed in to change notification settings - Fork 26
GroupJoin
Correlates the elements of two sequences based on key equality and groups the results.
GroupJoin(inner, outerKeySelector, innerKeySelector, resultSelector])
The sequence to join to the first sequence.
A function to extract the join key from each element of the first sequence:
TKey outerKeySelector(TSource)
A function to extract the join key from each element of the second sequence:
TKey innerKeySelector(TInner)
A function to create a result element from an element from the first sequence and a collection of matching elements from the second sequence:
TResult resultSelector(TSource, Iterable<TInner>)
An Enumerable
that contains elements of type TResult
that are obtained by performing a grouped join on two sequences.
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated.
GroupJoin
produces hierarchical results, which means that elements from outer are paired with collections of matching elements from inner. GroupJoin
enables you to base your results on a whole set of matches for each element of outer.
If there are no correlated elements in inner for a given element of outer, the sequence of matches for that element will be empty but will still appear in the results.
The resultSelector
function is called only one time for each outer element together with a collection of all the inner elements that match the outer element. This differs from the Join method in which the result selector function is invoked on pairs that contain one element from outer and one element from inner.
GroupJoin
preserves the order of the elements of outer, and for each element of outer, the order of the matching elements from inner.
GroupJoin
has no direct equivalent in traditional relational database terms. However, this method does implement a superset of inner joins and left outer joins. Both of these operations can be written in terms of a grouped join.
The following code example demonstrates how to use GroupJoin
to perform a grouped join on two sequences.
class Person {
constructor(name) {
this.Name = name;
}
}
class Pet {
constructor(name, owner) {
this.Name = name;
this.Owner = owner;
}
}
var magnus = new Person("Hedlund, Magnus");
var terry = new Person("Adams, Terry");
var charlotte = new Person("Weiss, Charlotte");
var peopleArray = [ magnus, terry, charlotte ];
var petsArray = [ new Pet("Barley", terry),
new Pet("Boots", terry),
new Pet("Whiskers", charlotte),
new Pet("Daisy", magnus) ];
var people = Enumerable.asEnumerable(peopleArray);
var pets = Enumerable.asEnumerable(petsArray);
// Create a list where each element is an anonymous
// type that contains a person's name and
// a collection of names of the pets they own.
var query =
people.GroupJoin(pets,
person => person,
pet => pet.Owner,
(person, petCollection) => {
return {
OwnerName: person.Name,
Pets: Enumerable.asEnumerable(petCollection)
.Select(pet => pet.Name)
}});
for (var obj of query)
{
// Output the owner's name.
console.log(obj.OwnerName + ":");
// Output each of the owner's pet's names.
for (var pet of obj.Pets)
{
console.log(" " + pet);
}
}
/*
This code produces the following output:
Hedlund, Magnus:
Daisy
Adams, Terry:
Barley
Boots
Weiss, Charlotte:
Whiskers
*/