File tree Expand file tree Collapse file tree 2 files changed +6
-9
lines changed
fundamentals/crud/write-operations Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,10 @@ Overview
2121--------
2222
2323This 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
3229Sample Data
3330~~~~~~~~~~~
Original file line number Diff line number Diff 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
158158For more information about this release, see the :github:`v3.0 release notes
159159</mongodb/mongo-csharp-driver/releases/tag/v3.0.0>`.
You can’t perform that action at this time.
0 commit comments