File tree Expand file tree Collapse file tree 5 files changed +1154
-2
lines changed Expand file tree Collapse file tree 5 files changed +1154
-2
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ Fundamentals
50
50
Time Series Collections </fundamentals/time-series>
51
51
In-Use Encryption </fundamentals/encrypt-fields>
52
52
Search Geospatially </fundamentals/geo>
53
+ Store Large Files </fundamentals/gridfs>
53
54
Replica Set Operations </fundamentals/read-write-configuration>
54
55
OData </fundamentals/odata>
55
56
56
-
57
57
- :ref:`Connecting to MongoDB <csharp-connection>`
58
58
- :ref:`csharp-db-coll`
59
59
- :ref:`csharp-crud`
@@ -72,5 +72,6 @@ Fundamentals
72
72
- :ref:`csharp-time-series`
73
73
- :ref:`Encrypt Fields <csharp-fle>`
74
74
- :ref:`csharp-geo`
75
- - :ref:`csharp-odata `
75
+ - :ref:`csharp-gridfs `
76
76
- :ref:`csharp-read-write-config`
77
+ - :ref:`csharp-odata`
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