Table of Contents

Class DeleteOneModel<TDocument>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Model for deleting a single document.

[Serializable]
public sealed class DeleteOneModel<TDocument> : WriteModel<TDocument>

Type Parameters

TDocument

The type of the document.

Inheritance
WriteModel<TDocument>
DeleteOneModel<TDocument>
Inherited Members

Constructors

DeleteOneModel(FilterDefinition<TDocument>)

Initializes a new instance of the DeleteOneModel<TDocument> class.

public DeleteOneModel(FilterDefinition<TDocument> filter)

Parameters

filter FilterDefinition<TDocument>

The filter.

Properties

Collation

Gets or sets the collation.

public Collation Collation { get; set; }

Property Value

Collation

Filter

Gets the filter.

public FilterDefinition<TDocument> Filter { get; }

Property Value

FilterDefinition<TDocument>

Hint

Gets or sets the hint.

public BsonValue Hint { get; set; }

Property Value

BsonValue

ModelType

Gets the type of the model.

public override WriteModelType ModelType { get; }

Property Value

WriteModelType