Skip to content

Commit 9911dd0

Browse files
committed
feedback
1 parent 127e288 commit 9911dd0

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

source/fundamentals/crud/write-operations/bulk-write.txt

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,10 @@ Overview
2121
--------
2222

2323
This guide shows you how to use the {+driver-short+} to perform **bulk write operations**
24-
that include multiple write operations in a single database call.
25-
26-
Consider a scenario in which you want to insert a document into a collection,
27-
update multiple other documents, then delete a document. If you use
28-
individual methods, each operation requires its own database call. If you use
29-
a bulk write operation, you can improve efficiency by performing multiple write
30-
operations in a single database call.
24+
from your ``MongoClient`` instance. A bulk write operation is a single database call
25+
that performs multiple write operations on one or more MongoDB collections. This is more
26+
efficient than performing multiple individual write operations because it reduces the
27+
number of round trips between your application and the database.
3128

3229
Sample Data
3330
~~~~~~~~~~~

source/whats-new.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ The 3.0 driver release includes the following new features:
152152
To learn more about using the aggregation pipeline with the {+driver-short+}, see
153153
:ref:`csharp-aggregation`.
154154

155-
- Adds an API for bulk write operations. To learn more about bulk write operations, see
156-
:ref:`csharp-bulk-write`.
155+
- Adds a ``MongoClient`` API for bulk write operations. To learn more about bulk write
156+
operations, see :ref:`csharp-bulk-write`.
157157

158158
For more information about this release, see the :github:`v3.0 release notes
159159
</mongodb/mongo-csharp-driver/releases/tag/v3.0.0>`.

0 commit comments

Comments
 (0)