File tree Expand file tree Collapse file tree 5 files changed +1153
-0
lines changed Expand file tree Collapse file tree 5 files changed +1153
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ Fundamentals
30
30
Time Series Collections </fundamentals/time-series>
31
31
In-Use Encryption </fundamentals/encrypt-fields>
32
32
Search Geospatially </fundamentals/geo>
33
+ Store Large Files </fundamentals/gridfs>
33
34
Replica Set Operations </fundamentals/read-write-configuration>
34
35
35
36
- :ref:`Connecting to MongoDB <csharp-connection>`
@@ -51,4 +52,5 @@ Fundamentals
51
52
- :ref:`csharp-time-series`
52
53
- :ref:`Encrypt Fields <csharp-fle>`
53
54
- :ref:`csharp-geo`
55
+ - :ref:`csharp-gridfs`
54
56
- :ref:`csharp-read-write-config`
Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ Overview
23
23
In this guide, you can learn how to use the {+driver-long+} to add
24
24
documents to a MongoDB collection by performing insert operations.
25
25
26
+ .. note:: 16 MB Size Limit
27
+
28
+ MongoDB limits individual BSON documents to 16 MB. If your document is larger than 16 MB,
29
+ use the :ref:`GridFS <csharp-gridfs>` API instead.
30
+
26
31
An insert operation inserts one or more documents into a MongoDB collection.
27
32
The {+driver-short+} provides the following methods to perform insert
28
33
operations, each of which has an asynchronous and synchronous version:
You can’t perform that action at this time.
0 commit comments