File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
source/fundamentals/crud/read-operations Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,8 @@ method to modify the behavior of the operation.
95
95
When calling ``Sort()``, you must pass in the sort definition as a parameter. You can construct a sort
96
96
definition by using the ``Builders<T>.Sort.Ascending()`` method to sort values from
97
97
lowest to highest, or the ``Builders<T>.Sort.Ascending()`` method to sort them from highest
98
- to lowest. Both of these methods take the field name to sort by as a parameter.
98
+ to lowest. Both of these methods take the field name to sort by as a parameter. These methods
99
+ can be chained to sort returned documents by multiple fields.
99
100
100
101
The following example returns all documents that have a ``cuisine`` field value
101
102
of ``"Italian"``, sorted in ascending order of ``name`` field values:
You can’t perform that action at this time.
0 commit comments