Table of Contents

Class FindOptions<TDocument, TProjection>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Options for finding documents.

public class FindOptions<TDocument, TProjection> : FindOptionsBase

Type Parameters

TDocument

The type of the document.

TProjection

The type of the projection (same as TDocument if there is no projection).

Inheritance
FindOptions<TDocument, TProjection>
Derived
Inherited Members

Properties

Limit

Gets or sets how many documents to return.

public int? Limit { get; set; }

Property Value

int?

Projection

Gets or sets the projection.

public ProjectionDefinition<TDocument, TProjection> Projection { get; set; }

Property Value

ProjectionDefinition<TDocument, TProjection>

Skip

Gets or sets how many documents to skip before returning the rest.

public int? Skip { get; set; }

Property Value

int?

Sort

Gets or sets the sort.

public SortDefinition<TDocument> Sort { get; set; }

Property Value

SortDefinition<TDocument>