Skip to content

Commit 5f690f3

Browse files
committed
Address technical feedback
1 parent 6e2bec7 commit 5f690f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/fundamentals/crud/read-operations/specify-documents-to-return.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ method to modify the behavior of the operation.
9595
When calling ``Sort()``, you must pass in the sort definition as a parameter. You can construct a sort
9696
definition by using the ``Builders<T>.Sort.Ascending()`` method to sort values from
9797
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.
99100

100101
The following example returns all documents that have a ``cuisine`` field value
101102
of ``"Italian"``, sorted in ascending order of ``name`` field values:

0 commit comments

Comments
 (0)