File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
source/fundamentals/crud/write-operations Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -499,11 +499,9 @@ databases and collections at once.
499
499
To perform a client bulk operation, you create an pass a list of
500
500
``ClientNamespacedWriteModel`` instances to this method.
501
501
502
- There are six subtypes of ``ClientNamespacedWriteModel``: ``ClientNamespacedInsertOneModel``,
503
- ``ClientNamespacedUpdateOneModel``, ``ClientNamespacedUpdateManyModel``,
504
- ``ClientNamespacedReplaceOneModel``, ``ClientNamespacedDeleteOneModel``, and
505
- ``ClientNamespacedDeleteManyModel``. To construct these write models, you can
506
- use the ``ClientNamespacedWriteModel`` methods ``insertOne()``, ``updateOne()``,
502
+ There are six subtypes of ``ClientNamespacedWriteModel`` that are used to
503
+ represent write operations. To construct these write models, you can use the
504
+ corresponding ``ClientNamespacedWriteModel`` methods ``insertOne()``, ``updateOne()``,
507
505
``updateMany()``, ``replaceOne()``, ``deleteOne()``, and ``deleteMany()``. These
508
506
methods take a ``MongoNamespace`` object that defines which
509
507
database and collection to write to.
You can’t perform that action at this time.
0 commit comments