Projects each element of a sequence into a new form.
Namespace: Breeze.Sharp
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax
public static EntityQuery<TResult> Select<TSource, TResult>( this EntityQuery<TSource> source, Expression<Func<TSource, TResult>> selector )
Parameters
- source
- Type: Breeze.SharpEntityQueryTSource
- selector
- Type: System.Linq.ExpressionsExpressionFuncTSource, TResult
Type Parameters
- TSource
- TResult
Return Value
Type: EntityQueryTResultUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type EntityQueryTSource. 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