Class BaseFindOptions<T, TSort>
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
TTSort
- Inheritance
-
BasePaginatedFindOptions<T, BaseFindOptions<T, TSort>>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