GroupByMany<TSource, TKey>(IEnumerable<TSource>, Func<TSource, IEnumerable<TKey>>) Method
Groups the elements of a sequence according to a specified key selector function that returns a sequence of keys.
Namespace
Statiq.Common
Containing Type
GroupByExtensions

Syntax

public static IEnumerable<IGrouping<TKey, TSource>> GroupByMany<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, IEnumerable<TKey>> keySelector)

Type Parameters

Name Description
TSource The type of the source.
TKey The type of the key.

Parameters

Name Type Description
source IEnumerable<TSource> The source.
keySelector Func<TSource, IEnumerable<TKey>> The key selector.

Return Value

Type Description
IEnumerable<IGrouping<TKey, TSource>> A sequence of groups.