diff --git a/source/connection-troubleshooting.txt b/source/connection-troubleshooting.txt index c8fc1be0..a5c4a225 100644 --- a/source/connection-troubleshooting.txt +++ b/source/connection-troubleshooting.txt @@ -202,7 +202,7 @@ driver could generate this error. Also ensure that the user has the appropriate permissions for the message you are sending. MongoDB uses Role-Based Access Control (RBAC) to control access to a MongoDB deployment. For more information about how to configure RBAC in MongoDB, -see :manual:`Default MongoDB Port `. +see :manual:`Role-Based Access Control `. Configure Your Firewall ----------------------- diff --git a/source/fundamentals/builders.txt b/source/fundamentals/builders.txt index 758a6dff..c4390304 100644 --- a/source/fundamentals/builders.txt +++ b/source/fundamentals/builders.txt @@ -272,6 +272,9 @@ single field path``, in this case using ``Category``: // Using string-based field names var keys = builder.Wildcard("Category"); +For more information about how to use wildcard indexes, see +:manual:`Wildcard Indexes `. + Build an Aggregation Pipeline ----------------------------- diff --git a/source/fundamentals/connection/tls.txt b/source/fundamentals/connection/tls.txt index 90cdb691..0496ffe1 100644 --- a/source/fundamentals/connection/tls.txt +++ b/source/fundamentals/connection/tls.txt @@ -25,9 +25,9 @@ the :ref:`connection string ` or Enable TLS ---------- -You can enable TLS for the connection to your MongoDB instance -in two different ways: using a property on a ``MongoClientSettings`` object or -through a parameter in your connection string. +By default, TLS is disabled when connecting to MongoDB instances. You can enable TLS +for the connection to your MongoDB instance in two different ways: using a property +on a ``MongoClientSettings`` object or through a parameter in your connection string. .. note:: diff --git a/source/fundamentals/serialization/class-mapping.txt b/source/fundamentals/serialization/class-mapping.txt index 340868a3..db80899a 100644 --- a/source/fundamentals/serialization/class-mapping.txt +++ b/source/fundamentals/serialization/class-mapping.txt @@ -140,7 +140,7 @@ Mapping with Constructors By default, the {+driver-short+} can automatically map a class only if the class has a constructor with no arguments. If you want the driver to use a constructor that accepts one or more arguments, you can add the ``BsonConstructor`` attribute to the constructor. -In this case, the driver the driver examines the types to determine how to map the +In this case, the driver examines the types to determine how to map the constructor arguments to class properties or fields. When the driver creates a class map for the following ``Person`` class, it will use the diff --git a/source/quick-start.txt b/source/quick-start.txt index e24c11d0..25c1b463 100644 --- a/source/quick-start.txt +++ b/source/quick-start.txt @@ -94,7 +94,9 @@ Query Your MongoDB Cluster from Your Application ------------------------------------------------ In this step, you'll use the {+driver-short+} -to connect to your MongoDB cluster and run a query on the sample data. +to connect to your MongoDB cluster and run a query on the sample data. You'll need your +preferred text editor or :wikipedia:`integrated development environment (IDE) ` +installed and running. Open the file named ``Program.cs`` in the base directory of your project. Copy the following sample code into ``Program.cs``