Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion source/connection-troubleshooting.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 </core/authorization/>`.
see :manual:`Role-Based Access Control </core/authorization/>`.

Configure Your Firewall
-----------------------
Expand Down
3 changes: 3 additions & 0 deletions source/fundamentals/builders.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 </core/indexes/index-types/index-wildcard>`.

Build an Aggregation Pipeline
-----------------------------

Expand Down
6 changes: 3 additions & 3 deletions source/fundamentals/connection/tls.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ the :ref:`connection string <csharp-connection-uri>` 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::

Expand Down
2 changes: 1 addition & 1 deletion source/fundamentals/serialization/class-mapping.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion source/quick-start.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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) <Integrated development environment>`
installed and running.

Open the file named ``Program.cs`` in the base directory of your project. Copy the
following sample code into ``Program.cs``
Expand Down