DataSource for Entity Framework in WPF
C1.LiveLinq Namespace / IndexedQueryExtensions Class / Select<TSource,TResult> Method
The type of the elements of source.
The type of the value returned by selector.
An IIndexedSource<TSource> collection of values to invoke a transform function on.
A transform function to apply to each element.

In This Topic
    Select<TSource,TResult> Method (IndexedQueryExtensions)
    In This Topic
    Projects each element of a collection into a new form.
    Syntax

    Parameters

    source
    An IIndexedSource<TSource> collection of values to invoke a transform function on.
    selector
    A transform function to apply to each element.

    Type Parameters

    TSource
    The type of the elements of source.
    TResult
    The type of the value returned by selector.

    Return Value

    An IIndexedSource<TResult> whose elements are the result of invoking the transform function on each element of source.
    See Also