Skip to content

Commit 227a516

Browse files
[DOCSP-24528] Quick Reference (#48)
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * add links * fixes * formatting * fixes and linq * JS feedback * Apply suggestions from code review Co-authored-by: Jordan Smith <[email protected]> Co-authored-by: Jordan Smith <[email protected]>
1 parent 54bc44d commit 227a516

File tree

4 files changed

+579
-0
lines changed

4 files changed

+579
-0
lines changed

source/fundamentals/builders.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ Use builders to check which documents in the collection have a
102102

103103
.. TODO for a complete list of expressions, see the Query page?
104104

105+
.. _csharp-builders-projection:
106+
105107
Create a Projection
106108
-------------------
107109

@@ -216,6 +218,8 @@ Alternatively, you can use string-based field names to define the update:
216218
var builder = Builders<Flower>.Update;
217219
var update = builder.Set("SunRequirement", "Full sun").Mul("Price", 0.9);
218220

221+
.. _csharp-builders-indexes:
222+
219223
Define Index Keys
220224
-----------------
221225

source/fundamentals/crud/read-operations/retrieve.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ your query.
4444

4545
To learn more about query filters, see :ref:`csharp-specify-query`.
4646

47+
.. _csharp-retrieve-find-one:
48+
4749
Find One Document
4850
~~~~~~~~~~~~~~~~~
4951

@@ -82,6 +84,8 @@ results. If no documents match the query filter the methods return ``null``.
8284
To see a full example of using the ``Find()`` method to find a single document, see
8385
:ref:`csharp-retrieve-additional-information`.
8486

87+
.. _csharp-retrieve-find-multiple:
88+
8589
Find Multiple Documents
8690
~~~~~~~~~~~~~~~~~~~~~~~
8791

source/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ MongoDB C# Driver
77
.. toctree::
88

99
/quick-start
10+
/quick-reference
1011
/usage-examples
1112
/fundamentals
1213
API Documentation <{+api-root+}/R_Project_CSharpDriverDocs.htm>

0 commit comments

Comments
 (0)