ToLookupMany<TKey>(IEnumerable<IDocument>, string, IEqualityComparer<TKey>) Method
Creates a lookup from a sequence of documents according to a specified metadata key that contains a sequence of keys and compares the keys by using a specified comparer.
Namespace
Statiq.Common
Containing Type
IDocumentToLookupExtensions

Syntax

public static ILookup<TKey, IDocument> ToLookupMany<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
ILookup<TKey, IDocument> A lookup.