MobileServiceTableQuery<T>.Select<U> Method
Applies the specified selection to the source query.
Namespace: Microsoft.WindowsAzure.MobileServices
Assembly: Microsoft.WindowsAzure.MobileServices.Managed (in Microsoft.WindowsAzure.MobileServices.Managed.dll)
Syntax
'Declaration
Public Function Select(Of U) ( _
selector As Expression(Of Func(Of T, U)) _
) As MobileServiceTableQuery(Of U)
'Usage
Dim instance As MobileServiceTableQuery
Dim selector As Expression(Of Func(Of T, U))
Dim returnValue As MobileServiceTableQuery(Of U)
returnValue = instance.Select(selector)
public MobileServiceTableQuery<U> Select<U>(
Expression<Func<T, U>> selector
)
public:
generic<typename U>
MobileServiceTableQuery<U>^ Select(
Expression<Func<T, U>^>^ selector
)
member Select :
selector:Expression<Func<'T, 'U>> -> MobileServiceTableQuery<'U>
JScript does not support generic types and methods.
Type Parameters
- U
Type representing the projected result of the query.
Parameters
- selector
Type: System.Linq.Expressions.Expression<Func<T, U>>
The selector function.
Return Value
Type: Microsoft.WindowsAzure.MobileServices.MobileServiceTableQuery<U>
The composed query.