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.
9595When calling ``Sort()``, you must pass in the sort definition as a parameter. You can construct a sort
9696definition by using the ``Builders<T>.Sort.Ascending()`` method to sort values from
9797lowest 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.
99100
100101The following example returns all documents that have a ``cuisine`` field value
101102of ``"Italian"``, sorted in ascending order of ``name`` field values:
You can’t perform that action at this time.
0 commit comments