@@ -171,9 +171,9 @@ and the equivalent {+mdb-server+} operators:
171
171
of the string values in the query array.
172
172
- :manual:`$in </reference/operator/query/in/>`
173
173
174
- The following example specifies a query filter as a parameter to the ``Find()``
175
- method . The query matches all documents where the ``establishedYear`` field is
176
- greater than ``1985``.
174
+ The following example calls the ``Find()`` method and passes a lambda filter, which
175
+ the driver translates to a query filter . The query matches all documents where the
176
+ ``establishedYear`` field is greater than ``1985``.
177
177
178
178
.. io-code-block::
179
179
:copyable:
@@ -202,8 +202,8 @@ same documents as the preceding example:
202
202
203
203
{ "_id" : 4, "make" : "Kiesel", "models" : ["Ares", "Vader", "Solo"], "establishedYear" : 2015, "rating" : null }
204
204
205
- The following example specifies a query filter as a parameter to the ``Find()``
206
- method . The query matches all documents where the
205
+ The following example calls the ``Find()`` method and passes a lambda expression, which
206
+ the driver translates to a query filter . The query matches all documents where the
207
207
``make`` field equals "Fender".
208
208
209
209
.. io-code-block::
@@ -277,8 +277,8 @@ and the equivalent {+mdb-server+} operators:
277
277
- Matches documents where one or more expressions evaluates to true.
278
278
- :manual:`$or </reference/operator/query/or/>`
279
279
280
- The following example specifies a query filter as a parameter to the ``Find()``
281
- method . The query matches all documents where the
280
+ The following example calls the ``Find()`` method and passes a lambda expression,
281
+ which the driver translates to a query filter . The query matches all documents where the
282
282
``establishedYear`` field is greater than or equal to ``1985``, and the ``make``
283
283
field is not equal to "Kiesel".
284
284
@@ -590,17 +590,17 @@ bitwise operations and the equivalent {+mdb-server+} operators:
590
590
the specified field.
591
591
- :manual:`$bitsAllClear </reference/operator/query/bitsAllClear/>`
592
592
593
- * - ``bitsAllSet ()``
593
+ * - ``BitsAllSet ()``
594
594
- Matches documents where all of the specified bit positions are set (``1``) in
595
595
the specified field.
596
596
- :manual:`$bitsAllSet </reference/operator/query/bitsAllSet/>`
597
597
598
- * - ``bitsAnyClear ()``
598
+ * - ``BitsAnyClear ()``
599
599
- Matches documents where any of the specified bit positions are clear (``0``) in
600
600
the specified field.
601
601
- :manual:`$bitsAnyClear </reference/operator/query/bitsAnyClear/>`
602
602
603
- * - ``bitsAnySet ()``
603
+ * - ``BitsAnySet ()``
604
604
- Matches documents where any of the specified bit positions are set (``1``) in
605
605
the specified field.
606
606
- :manual:`$bitsAnySet </reference/operator/query/bitsAnySet/>`
0 commit comments