次の方法で共有


FeedOptions.MaxItemCount プロパティ

定義

Azure Cosmos DB サービスの列挙操作で返される項目の最大数を取得または設定します。

public int? MaxItemCount { get; set; }
member this.MaxItemCount : Nullable<int> with get, set
Public Property MaxItemCount As Nullable(Of Integer)

プロパティ値

列挙操作で返される項目の最大数。

// Fetch query results 10 at a time.
using (var queryable = client.CreateDocumentQuery<Book>(collectionLink, new FeedOptions { MaxItemCount = 10 }))
{
    while (queryable.HasResults)
    {
        FeedResponse<Book> response = await queryable.ExecuteNext<Book>();
    }
}

注釈

クエリの改ページ位置付けに使用されます。 '-1' 動的ページ サイズに使用されます。

適用対象