GroupBy<TKey>(IEnumerable<IDocument>, string, IEqualityComparer<TKey>) Method
Groups the elements of a sequence of documents and the values of a specified metadata key and compares the keys by using a specified comparer. If a document does not contain the specified metadata key, it is not included in the result set.
Namespace
Statiq.Common
Containing Type
IDocumentGroupByExtensions

Syntax

public static IEnumerable<IGrouping<TKey, IDocument>> GroupBy<TKey>(this IEnumerable<IDocument> documents, string keyMetadataKey, IEqualityComparer<TKey> comparer)

Type Parameters

Name Description
TKey The type of the key.

Parameters

Name Type Description
documents IEnumerable<IDocument> The documents.
keyMetadataKey string The key metadata key.
comparer IEqualityComparer<TKey> The comparer.

Return Value

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