Skip to content

Commit 9b127c7

Browse files
mongoKartgithub-actions[bot]
authored andcommitted
DOCSP-39980 - GridFS (#289)
(cherry picked from commit 86eb2be)
1 parent df0c80f commit 9b127c7

File tree

5 files changed

+1154
-2
lines changed

5 files changed

+1154
-2
lines changed

source/fundamentals.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ Fundamentals
5050
Time Series Collections </fundamentals/time-series>
5151
In-Use Encryption </fundamentals/encrypt-fields>
5252
Search Geospatially </fundamentals/geo>
53+
Store Large Files </fundamentals/gridfs>
5354
Replica Set Operations </fundamentals/read-write-configuration>
5455
OData </fundamentals/odata>
5556

56-
5757
- :ref:`Connecting to MongoDB <csharp-connection>`
5858
- :ref:`csharp-db-coll`
5959
- :ref:`csharp-crud`
@@ -72,5 +72,6 @@ Fundamentals
7272
- :ref:`csharp-time-series`
7373
- :ref:`Encrypt Fields <csharp-fle>`
7474
- :ref:`csharp-geo`
75-
- :ref:`csharp-odata`
75+
- :ref:`csharp-gridfs`
7676
- :ref:`csharp-read-write-config`
77+
- :ref:`csharp-odata`

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ Overview
2323
In this guide, you can learn how to use the {+driver-long+} to add
2424
documents to a MongoDB collection by performing insert operations.
2525

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+
2631
An insert operation inserts one or more documents into a MongoDB collection.
2732
The {+driver-short+} provides the following methods to perform insert
2833
operations, each of which has an asynchronous and synchronous version:

0 commit comments

Comments
 (0)