MongoDB C++ Driver 4.2.0
Loading...
Searching...
No Matches
mongocxx::model::delete_one Class Reference

#include <mongocxx/v_noabi/mongocxx/model/delete_one.hpp>

Description

A MongoDB delete operation that removes a single document.

Public Member Functions

 delete_one (bsoncxx::v_noabi::document::view_or_value filter)
 Constructs a delete operation that will delete the first document matching the filter.
 delete_one (v1::bulk_write::delete_one op)
 Construct with the mongocxx::v1 equivalent.
bsoncxx::v_noabi::stdx::optional< bsoncxx::v_noabi::document::view_or_value > const & collation () const
 Gets the collation option for this delete operation.
delete_onecollation (bsoncxx::v_noabi::document::view_or_value collation)
 Sets the collation for this delete operation.
bsoncxx::v_noabi::document::view_or_value const & filter () const
 Gets the filter on this delete operation.
bsoncxx::v_noabi::stdx::optional< v_noabi::hint > const & hint () const
 Gets the current hint.
delete_onehint (v_noabi::hint index_hint)
 Sets the index to use for this operation.
 operator v1::bulk_write::delete_one () const
 Convert to the mongocxx::v1 equivalent.

Constructor & Destructor Documentation

◆ delete_one() [1/2]

◆ delete_one() [2/2]

Constructs a delete operation that will delete the first document matching the filter.

Parameters
filterDocument representing the criteria for deletion.

Member Function Documentation

◆ collation() [1/2]

Gets the collation option for this delete operation.

Returns
The optional value of the collation option.
See also

◆ collation() [2/2]

Sets the collation for this delete operation.

Parameters
collationThe new collation.
See also

◆ filter()

Gets the filter on this delete operation.

Returns
The filter to be used for the delete operation.

◆ hint() [1/2]

Gets the current hint.

Returns
The current hint, if one is set.

◆ hint() [2/2]

Sets the index to use for this operation.

Note
if the server already has a cached shape for this query, it may ignore a hint.
Parameters
index_hintObject representing the index to use.
Returns
A reference to the object on which this member function is being called. This facilitates method chaining.

◆ operator v1::bulk_write::delete_one()

mongocxx::v_noabi::model::delete_one::operator v1::bulk_write::delete_one ( ) const
inlineexplicit

Convert to the mongocxx::v1 equivalent.


The documentation for this class was generated from the following file: