Skip to content

DOCSP-39980 - GridFS #289

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 39 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
a8b42fc
compat changes
mongoKart Oct 17, 2024
fcc74c6
DOCSP-43148 - Refactor AWS authentication (#258)
mongoKart Oct 18, 2024
9ec74f8
DOCSP-44476 - BsonValue properties (#256)
mongoKart Oct 18, 2024
a5d5937
(DOCSP-44251) Removed EOL'd v2.20 and v2.19 (#262)
elyse-mdb Oct 21, 2024
35be495
Fix broken 3.0 link (#266)
mcmorisi Oct 21, 2024
5888fc6
DOCSP-44588: Add trailing slash to Analyzer URL (#267)
mcmorisi Oct 21, 2024
39c4200
DOCSP-44438 - Remove nil (#268) (#269)
github-actions[bot] Oct 22, 2024
0732a94
v3 Post-Release Updates (#265) (#280)
github-actions[bot] Oct 22, 2024
eefde24
DOCSP-34044: Add bitwise operators to aggregation pipeline (#253)
mayaraman19 Oct 24, 2024
425cb6c
update incorrect whats new bullet (#281)
jordan-smith721 Oct 28, 2024
87c3bff
DOCSP-44422 - Bulk write API (#257) (#282)
github-actions[bot] Oct 30, 2024
083e7e9
DOCSP-44845 - Fix tip box (#283) (#285)
github-actions[bot] Oct 31, 2024
db189ed
wip
mongoKart Nov 4, 2024
2801f95
wip
mongoKart Nov 7, 2024
bdb866d
wip
mongoKart Nov 8, 2024
bda8067
DOCSP-39979 Add example for ElemMatch builder (#288)
jordan-smith721 Nov 11, 2024
118c066
wip
mongoKart Nov 11, 2024
8a1f173
wip
mongoKart Nov 12, 2024
06f3c9c
wip
mongoKart Nov 12, 2024
d45ab1e
Merge remote-tracking branch 'upstream/v3.0' into docsp-39980-gridfs
mongoKart Nov 12, 2024
24cc61d
Merge remote-tracking branch 'upstream/master' into docsp-39980-gridfs
mongoKart Nov 12, 2024
3027991
revert compat
mongoKart Nov 12, 2024
5609b6e
fixes
mongoKart Nov 12, 2024
c32922b
fixes
mongoKart Nov 12, 2024
c2f55af
fix list
mongoKart Nov 12, 2024
2459505
test
mongoKart Nov 12, 2024
18f4e59
test
mongoKart Nov 13, 2024
b20dd5e
size limit note
mongoKart Nov 13, 2024
4132ad2
style
mongoKart Nov 13, 2024
ea27460
Apply suggestions from code review
mongoKart Nov 14, 2024
2cf2ba5
feedback
mongoKart Nov 14, 2024
41e3fbd
Merge remote-tracking branch 'origin/docsp-39980-gridfs' into docsp-3…
mongoKart Nov 14, 2024
53581c4
remove newlines
mongoKart Nov 14, 2024
06a4ef9
fixes
mongoKart Nov 14, 2024
f80753f
feedback
mongoKart Nov 14, 2024
bf9744f
feedback
mongoKart Nov 15, 2024
2a42c9e
rs feedback
mongoKart Nov 19, 2024
b4219cb
feedback
mongoKart Nov 27, 2024
ef4bc97
Merge branch 'master' into docsp-39980-gridfs
mongoKart Nov 27, 2024
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
2 changes: 2 additions & 0 deletions source/fundamentals.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Fundamentals
Time Series Collections </fundamentals/time-series>
In-Use Encryption </fundamentals/encrypt-fields>
Search Geospatially </fundamentals/geo>
Store Large Files </fundamentals/gridfs>

- :ref:`Connecting to MongoDB <csharp-connection>`
- :ref:`csharp-db-coll`
Expand All @@ -50,3 +51,4 @@ Fundamentals
- :ref:`csharp-time-series`
- :ref:`Encrypt Fields <csharp-fle>`
- :ref:`csharp-geo`
- :ref:`csharp-gridfs`
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
Loading