你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IMobileServiceTable<T>.Select<U> 方法

定义

通过应用指定的选择创建查询。

public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<U> Select<U> (System.Linq.Expressions.Expression<Func<T,U>> selector);
abstract member Select : System.Linq.Expressions.Expression<Func<'T, 'U>> -> Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<'U>
Public Function Select(Of U) (selector As Expression(Of Func(Of T, U))) As IMobileServiceTableQuery(Of U)

类型参数

U

表示查询的投影结果的类型。

参数

selector
Expression<Func<T,U>>

选择器函数。

返回

针对该表的查询。

适用于