你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
CosmosLinqExtensions.MaxAsync<TSource> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回泛型 IQueryable<T> 中的最大值。
public static System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.Response<TSource>> MaxAsync<TSource> (this System.Linq.IQueryable<TSource> source, System.Threading.CancellationToken cancellationToken = default);
static member MaxAsync : System.Linq.IQueryable<'Source> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.Response<'Source>>
<Extension()>
Public Function MaxAsync(Of TSource) (source As IQueryable(Of TSource), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of TSource))
类型参数
- TSource
源的元素的类型。
参数
- source
- IQueryable<TSource>
要确定最大值的值序列。
- cancellationToken
- CancellationToken
取消标记。
返回
序列中的最大值。