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

CosmosLinqExtensions.MinAsync<TSource> 方法

定义

返回泛型 IQueryable<T>中的最小值。

public static System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.Response<TSource>> MinAsync<TSource> (this System.Linq.IQueryable<TSource> source, System.Threading.CancellationToken cancellationToken = default);
static member MinAsync : System.Linq.IQueryable<'Source> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Cosmos.Response<'Source>>
<Extension()>
Public Function MinAsync(Of TSource) (source As IQueryable(Of TSource), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of TSource))

类型参数

TSource

源的元素的类型。

参数

source
IQueryable<TSource>

要确定最小值的值序列。

cancellationToken
CancellationToken

取消标记。

返回

Task<Response<TSource>>

序列中的最小值。

适用于