|
MongoDB C++ Driver
mongocxx-3.4.0
|
Class representing a MongoDB delete operation that removes a single document. More...
#include <delete_one.hpp>
Public Member Functions | |
| delete_one (bsoncxx::document::view_or_value filter) | |
| Constructs a delete operation that will delete the first document matching the filter. More... | |
| const bsoncxx::document::view_or_value & | filter () const |
| Gets the filter on this delete operation. More... | |
| delete_one & | collation (bsoncxx::document::view_or_value collation) |
| Sets the collation for this delete operation. More... | |
| const stdx::optional< bsoncxx::document::view_or_value > & | collation () const |
| Gets the collation option for this delete operation. More... | |
Class representing a MongoDB delete operation that removes a single document.
| mongocxx::model::delete_one::delete_one | ( | bsoncxx::document::view_or_value | filter | ) |
Constructs a delete operation that will delete the first document matching the filter.
| filter | Document representing the criteria for deletion. |
| delete_one& mongocxx::model::delete_one::collation | ( | bsoncxx::document::view_or_value | collation | ) |
Sets the collation for this delete operation.
| collation | The new collation. |
| const stdx::optional<bsoncxx::document::view_or_value>& mongocxx::model::delete_one::collation | ( | ) | const |
Gets the collation option for this delete operation.
| const bsoncxx::document::view_or_value& mongocxx::model::delete_one::filter | ( | ) | const |
Gets the filter on this delete operation.
1.8.13