次の方法で共有


FeedOptions.EnableScanInQuery プロパティ

定義

Azure Cosmos DB サービスの要求されたパスでインデックス作成がオプトアウトされたクエリでスキャンを有効にするオプションを取得または設定します。

public bool? EnableScanInQuery { get; set; }
member this.EnableScanInQuery : Nullable<bool> with get, set
Public Property EnableScanInQuery As Nullable(Of Boolean)

プロパティ値

クエリのスキャンが有効になっている場合、オプションは true です。それ以外の場合は false。

// Enable scan when Range index is not specified.
var queryable = client.CreateDocumentQuery<Book>(
    collectionLink, new FeedOptions { EnableScanInQuery = true }).Where(b => b.Price > 1000);

適用対象