Skip to content
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