File tree Expand file tree Collapse file tree 5 files changed +1154
-1
lines changed Expand file tree Collapse file tree 5 files changed +1154
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ Fundamentals
29
29
Time Series Collections </fundamentals/time-series>
30
30
In-Use Encryption </fundamentals/encrypt-fields>
31
31
Search Geospatially </fundamentals/geo>
32
+ Store Large Files </fundamentals/gridfs>
32
33
Replica Set Operations </fundamentals/read-write-configuration>
33
34
34
35
- :ref:`Connecting to MongoDB <csharp-connection>`
@@ -49,4 +50,5 @@ Fundamentals
49
50
- :ref:`csharp-time-series`
50
51
- :ref:`Encrypt Fields <csharp-fle>`
51
52
- :ref:`csharp-geo`
52
- - :ref:`csharp-read-write-config`
53
+ - :ref:`csharp-gridfs`
54
+ - :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