Skip to content

Commit 54bc44d

Browse files
DOCSP-25528 cleanup (#49)
1 parent fa491a9 commit 54bc44d

21 files changed

+170
-40
lines changed

snooty.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ toc_landing_pages = [
44
"/fundamentals/connection",
55
"/fundamentals/crud",
66
"/usage-examples",
7+
"/fundamentals",
78
]
89

910
intersphinx = [

source/fundamentals.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,14 @@ Fundamentals
1919
/fundamentals/enterprise-authentication
2020
/fundamentals/linq
2121
/fundamentals/class-mapping
22+
23+
- :ref:`Connecting to MongoDB <csharp-connection>`
24+
- :ref:`csharp-crud`
25+
- :ref:`csharp-builders`
26+
- :ref:`csharp-data-formats`
27+
- :ref:`csharp-stable-api`
28+
- :ref:`csharp-authentication-mechanisms`
29+
- :ref:`csharp-enterprise-authentication-mechanisms`
30+
- :ref:`csharp-linq`
31+
- :ref:`csharp-class-mapping`
32+

source/fundamentals/connection/connection-options.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,6 @@ relevant options.
312312
* - **SdamLogFilename**
313313
- {+not-available+}
314314
- | The name of the SDAM (Server Discovery and Monitoring) log file.
315-
| TODO: Link to Monitoring page when finished
316315
|
317316
| **Data Type**: {+string-data-type+}
318317
| **Default**: ``null``

source/fundamentals/crud.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
CRUD Operations
55
===============
66

7-
.. default-domain:: mongodb
8-
97
.. toctree::
108
:caption: CRUD Operations
119

12-
/fundamentals/crud/write-operations
10+
/fundamentals/crud/write-operations
11+
/fundamentals/crud/read-operations
12+
13+
- :ref:`csharp-crud-read-operations`
14+
- :ref:`csharp-crud-write-operations`
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.. _csharp-crud-read-operations:
2+
3+
===============
4+
Read Operations
5+
===============
6+
7+
.. toctree::
8+
:caption: Read Operations
9+
10+
/fundamentals/crud/read-operations/retrieve
11+
/fundamentals/crud/read-operations/specify-query
12+
13+
- :ref:`csharp-retrieve`
14+
- :ref:`csharp-specify-query`

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _charp-retrieve:
1+
.. _csharp-retrieve:
22

33
=============
44
Retrieve Data
@@ -77,7 +77,7 @@ results. If no documents match the query filter the methods return ``null``.
7777
:manual:`natural order </reference/glossary/#std-term-natural-order>`
7878
on disk if no sort criteria is specified.
7979

80-
To learn more about sorting, see the TODO: sorting page.
80+
.. To learn more about sorting, see the TODO: sorting page.
8181

8282
To see a full example of using the ``Find()`` method to find a single document, see
8383
:ref:`csharp-retrieve-additional-information`.
@@ -231,9 +231,9 @@ The following example performs these actions:
231231
Additional Information
232232
----------------------
233233

234-
.. TODO: Links to creating filter with Builders and LINQ
234+
To learn more about query filters, see :ref:`csharp-specify-query`.
235235

236-
To learn more about query filters, see :ref:`csharp-specify-query`
236+
To learn how to specify queries using LINQ, see :ref:`csharp-linq`.
237237

238238
To view runnable examples of the ``Find()`` method, see the
239239
:ref:`csharp-find-one` page.

source/fundamentals/crud/read-operations/specify-query.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ The examples in this guide use the following documents in a collection called
4141

4242
The following ``Guitar`` class models the documents in this collection.
4343

44-
.. TODO: Add link to mapping page.
45-
4644
.. literalinclude:: /includes/fundamentals/code-examples/specify-query/Guitar.cs
4745
:language: csharp
4846
:copyable:
4947
:dedent:
5048

49+
To learn more about class mapping, see :ref:`csharp-class-mapping`.
50+
5151
The following code instantiates the ``_guitarsCollection`` object using the
5252
``Guitars`` class as a type parameter. This type parameter causes the object to
5353
automatically serialize and deserialize the documents it sends to and receives
@@ -350,5 +350,4 @@ following Server Manual Entries:
350350

351351
To learn more about using Builders, see :ref:`csharp-builders`.
352352

353-
.. TODO: Add LINQ fundamentals page
354-
To learn how to specify queries using LINQ, see :ref:`csharp-linq`.
353+
To learn how to specify queries using LINQ, see :ref:`csharp-linq`.

source/fundamentals/crud/write-operations.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
Write Operations
55
================
66

7-
.. default-domain:: mongodb
8-
9-
- :ref:`csharp-delete-guide`
10-
117
.. toctree::
128
:caption: Write Operations
139

1410
/fundamentals/crud/write-operations/insert
1511
/fundamentals/crud/write-operations/change
16-
/fundamentals/crud/write-operations/delete
12+
/fundamentals/crud/write-operations/delete
13+
14+
- :ref:`csharp-change-guide`
15+
- :ref:`csharp-delete-guide`
16+
- :ref:`csharp-insert-guide`

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,6 @@ examples:
205205
- :ref:`csharp-delete-one`
206206
- :ref:`csharp-delete-many`
207207

208-
.. To learn more about performing the operations mentioned, see the
209-
.. following guides:
210-
211-
.. TODO create specify a query
212-
.. - :ref:`csharp-query-document`
213-
214208
API Documentation
215209
~~~~~~~~~~~~~~~~~
216210

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. csharp-insert-guide:
1+
.. _csharp-insert-guide:
22

33
================
44
Insert Documents

0 commit comments

Comments
 (0)