Table of Contents

Class BaseFindOptions<T, TSort>

Namespace
DataStax.AstraDB.DataApi.Core.Query
Assembly
DataStax.AstraDB.DataApi.dll

Base class for find-many operation options.

public abstract class BaseFindOptions<T, TSort> : BasePaginatedFindOptions<T, BaseFindOptions<T, TSort>> where T : class where TSort : SortBuilder<T>

Type Parameters

T
TSort
Inheritance
BaseFindOptions<T, TSort>
Derived
Inherited Members

Properties

IncludeSimilarity

Whether to include similarity scores in the results.

public bool? IncludeSimilarity { get; set; }

Property Value

bool?

Skip

The number of documents to skip before starting to return documents.

public int? Skip { get; set; }

Property Value

int?

Sort

Sort order for the query.

public TSort Sort { get; set; }

Property Value

TSort