Click or drag to resize
QueryableSelectTSource, TResult Method
Select for IQueryable

Namespace:  Intuit.Ipp.LinqExtender
Assembly:  Intuit.Ipp.LinqExtender (in Intuit.Ipp.LinqExtender.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
C#
public static IQueryable<TResult> Select<TSource, TResult>(
	this IQueryContext<TSource> source,
	Expression<Func<TSource, TResult>> selector
)

Parameters

source
Type: Intuit.Ipp.LinqExtenderIQueryContextTSource

[Missing <param name="source"/> documentation for "M:Intuit.Ipp.LinqExtender.Queryable.Select``2(Intuit.Ipp.LinqExtender.IQueryContext{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})"]

selector
Type: System.Linq.ExpressionsExpressionFuncTSource, TResult

[Missing <param name="selector"/> documentation for "M:Intuit.Ipp.LinqExtender.Queryable.Select``2(Intuit.Ipp.LinqExtender.IQueryContext{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})"]

Type Parameters

TSource

[Missing <typeparam name="TSource"/> documentation for "M:Intuit.Ipp.LinqExtender.Queryable.Select``2(Intuit.Ipp.LinqExtender.IQueryContext{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})"]

TResult

[Missing <typeparam name="TResult"/> documentation for "M:Intuit.Ipp.LinqExtender.Queryable.Select``2(Intuit.Ipp.LinqExtender.IQueryContext{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})"]

Return Value

Type: IQueryableTResult

[Missing <returns> documentation for "M:Intuit.Ipp.LinqExtender.Queryable.Select``2(Intuit.Ipp.LinqExtender.IQueryContext{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryContextTSource. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also