Поделиться через


Queryable.CountBy<TSource,TKey> Метод

Определение

Возвращает количество каждого элемента из последовательности в соответствии с указанной функцией селектора ключей.

public static System.Linq.IQueryable<System.Collections.Generic.KeyValuePair<TKey,int>> CountBy<TSource,TKey> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer = default);
static member CountBy : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, 'Key>> * System.Collections.Generic.IEqualityComparer<'Key> -> System.Linq.IQueryable<System.Collections.Generic.KeyValuePair<'Key, int>>
<Extension()>
Public Function CountBy(Of TSource, TKey) (source As IQueryable(Of TSource), keySelector As Expression(Of Func(Of TSource, TKey)), Optional comparer As IEqualityComparer(Of TKey) = Nothing) As IQueryable(Of KeyValuePair(Of TKey, Integer))

Параметры типа

TSource

Тип элементов source.

TKey

Тип ключа для различения элементов по.

Параметры

source
IQueryable<TSource>

Последовательность для подсчета элементов из.

keySelector
Expression<Func<TSource,TKey>>

Функция для извлечения ключа для каждого элемента.

comparer
IEqualityComparer<TKey>

IEqualityComparer<T> для сравнения ключей.

Возвращаемое значение

IQueryable<T>, содержащий количество отдельных элементов из исходной последовательности в качестве объекта KeyValuePair<TKey,TValue>.

Исключения

source null.

Применяется к