'Declaration
Public Overloads Shared Function GroupBy
(Of TSource,TKey,TElement)( _
ByVal source As IIndexedSource(Of TSource), _
ByVal keySelector As Expression(Of Func(Of TSource,TKey)), _
ByVal elementSelector As Expression(Of Func(Of TSource,TElement)) _
) As IIndexedSource(Of IGrouping(Of TKey,TElement))
Parameters
- source
- An C1.LiveLinq.Indexing.IIndexedSource<T> whose elements to group
- keySelector
- A function to extract the key for each element.
- elementSelector
- A function to map each source element to an element in the IGrouping.
Type Parameters
- TSource
- The type of the elements of source.
- TKey
- The type of the key returned by keySelector.
- TElement
- The type of the elements in the IGrouping.
Return Value
A collection of IGrouping objects each containing a collection of objects of type TElement and a key.