Skip to content

DOCSP-44845 - Fix tip box #283

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 1 commit into from
Oct 31, 2024
Merged
Changes from all commits
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
10 changes: 9 additions & 1 deletion source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,15 @@ The 3.0 driver release includes the following new features:
.. tip:: MongoClientSettings

To enable client-side projection for all queries on a client, set the
``TranslationOptions`` property of the ``MongoClientSettings`` object to ``true``.
``TranslationOptions`` property of your ``MongoClientSettings`` object, as shown
in the following example:

.. code-block:: csharp

clientSettings.TranslationOptions = new ExpressionTranslationOptions
{
EnableClientSideProjections = true
};

To learn more about using the aggregation pipeline with the {+driver-short+}, see
:ref:`csharp-aggregation`.
Expand Down
Loading