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

IMobileServiceSyncTable<T>.ThenBy<TKey> 方法

定义

通过应用指定的 ascending order 子句创建查询。

public Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<T> ThenBy<TKey> (System.Linq.Expressions.Expression<Func<T,TKey>> keySelector);
abstract member ThenBy : System.Linq.Expressions.Expression<Func<'T, 'Key>> -> Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<'T>
Public Function ThenBy(Of TKey) (keySelector As Expression(Of Func(Of T, TKey))) As IMobileServiceTableQuery(Of T)

类型参数

TKey

要按其排序的成员的类型。

参数

keySelector
Expression<Func<T,TKey>>

选择要按其排序的成员的表达式。

返回

针对该表的查询。

适用于