Skip to content

[Backport v3.0] DOCSP-39980 - GridFS #328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions source/fundamentals.txt
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ Fundamentals
Time Series Collections </fundamentals/time-series>
In-Use Encryption </fundamentals/encrypt-fields>
Search Geospatially </fundamentals/geo>
Store Large Files </fundamentals/gridfs>
Replica Set Operations </fundamentals/read-write-configuration>
OData </fundamentals/odata>


- :ref:`Connecting to MongoDB <csharp-connection>`
- :ref:`csharp-db-coll`
- :ref:`csharp-crud`
Expand All @@ -72,5 +72,6 @@ Fundamentals
- :ref:`csharp-time-series`
- :ref:`Encrypt Fields <csharp-fle>`
- :ref:`csharp-geo`
- :ref:`csharp-odata`
- :ref:`csharp-gridfs`
- :ref:`csharp-read-write-config`
- :ref:`csharp-odata`
5 changes: 5 additions & 0 deletions source/fundamentals/crud/write-operations/insert.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ Overview
In this guide, you can learn how to use the {+driver-long+} to add
documents to a MongoDB collection by performing insert operations.

.. note:: 16 MB Size Limit

MongoDB limits individual BSON documents to 16 MB. If your document is larger than 16 MB,
use the :ref:`GridFS <csharp-gridfs>` API instead.

An insert operation inserts one or more documents into a MongoDB collection.
The {+driver-short+} provides the following methods to perform insert
operations, each of which has an asynchronous and synchronous version:
Expand Down
Loading