File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
source/fundamentals/crud/write-operations Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ the following ``BulkWriteModel`` classes:
5050- ``BulkWriteDeleteOneModel<TDocument>``
5151- ``BulkWriteDeleteManyModel<TDocument>``
5252
53- The following sections show how to create and use instances of the preceding classes.
53+ The following sections show how to create and use instances of the preceding classes
54+ to perform the corresponding write operation in a bulk write.
5455
5556.. tip:: Bulk Write Operations with POCOs
5657
@@ -104,7 +105,7 @@ into the ``sample_restaurants.restaurants`` collection.
104105Update Operations
105106~~~~~~~~~~~~~~~~~
106107
107- To update a document, create an instance of the ``BulkWriteUpdateOneModel<TDocument>``
108+ To update a single document, create an instance of the ``BulkWriteUpdateOneModel<TDocument>``
108109class. The ``BulkWriteUpdateOneModel<TDocument>`` constructor accepts the following
109110parameters:
110111
@@ -359,9 +360,9 @@ the operations in the order they're defined in the collection.
359360 ``Array`` and ``List`` are two common classes that implement the ``IReadOnlyList``
360361 interface.
361362
362- The following code examples show how to use the asynchronous
363+ Select from the following tabs to view how to use the asynchronous
363364``BulkWriteAsync()`` method and the synchronous ``BulkWrite()`` method to
364- perform multiple write operations .
365+ perform a bulk write operation .
365366
366367.. tabs::
367368
You can’t perform that action at this time.
0 commit comments