diff --git a/source/whats-new.txt b/source/whats-new.txt index c66dad0f..790b8317 100644 --- a/source/whats-new.txt +++ b/source/whats-new.txt @@ -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`.