Table of Contents

Class FindOneAndUpdateOptions<TDocument, TProjection>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Options for a findAndModify command to update an object.

public class FindOneAndUpdateOptions<TDocument, TProjection>

Type Parameters

TDocument

The type of the document.

TProjection

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

Inheritance
FindOneAndUpdateOptions<TDocument, TProjection>
Derived
Inherited Members

Constructors

FindOneAndUpdateOptions()

Initializes a new instance of the FindOneAndUpdateOptions<TDocument, TProjection> class.

public FindOneAndUpdateOptions()

Properties

ArrayFilters

Gets or sets the array filters.

public IEnumerable<ArrayFilterDefinition> ArrayFilters { get; set; }

Property Value

IEnumerable<ArrayFilterDefinition>

The array filters.

BypassDocumentValidation

Gets or sets a value indicating whether to bypass document validation.

public bool? BypassDocumentValidation { get; set; }

Property Value

bool?

Collation

Gets or sets the collation.

public Collation Collation { get; set; }

Property Value

Collation

Comment

Gets or sets the comment.

public BsonValue Comment { get; set; }

Property Value

BsonValue

Hint

Gets or sets the hint.

public BsonValue Hint { get; set; }

Property Value

BsonValue

IsUpsert

Gets or sets a value indicating whether to insert the document if it doesn't already exist.

public bool IsUpsert { get; set; }

Property Value

bool

Let

Gets or sets the let document.

public BsonDocument Let { get; set; }

Property Value

BsonDocument

MaxTime

Gets or sets the maximum time.

public TimeSpan? MaxTime { get; set; }

Property Value

TimeSpan?

Projection

Gets or sets the projection.

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

Property Value

ProjectionDefinition<TDocument, TProjection>

ReturnDocument

Gets or sets which version of the document to return.

public ReturnDocument ReturnDocument { get; set; }

Property Value

ReturnDocument

Sort

Gets or sets the sort.

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

Property Value

SortDefinition<TDocument>