File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -623,7 +623,7 @@ The ``Convert()`` method takes the following parameters:
623
623
624
624
- Value to convert.
625
625
- ``ConvertOptions<Tto>`` instance that specifies the type to convert to
626
- and options. Some conversions require certain options to be set , but
626
+ and options. Some conversions require you to specify certain options , but
627
627
you can also set options to handle errors or null values.
628
628
629
629
The following code converts the ``RestaurantId`` string values to
@@ -634,8 +634,8 @@ The following code converts the ``RestaurantId`` string values to
634
634
var query = queryableCollection
635
635
.Select(r => Mql.Convert(r.RestaurantId, new ConvertOptions<int>()));
636
636
637
- The converted values in the output documents are stored under the original
638
- field name .
637
+ The driver stores the converted values under the original field name in
638
+ the output documents .
639
639
640
640
$lookup
641
641
~~~~~~~
You can’t perform that action at this time.
0 commit comments