-
Hello, Assuming the "Customers" demo database here, I would like to order by "Country" then "City" columns as in the "ORDER BY Several Columns Example". Unfortunately, neither in the documentation nor diving into code, I found any method to do so with the Like If not, I assume it should be achieve by our own implementation? |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 1 reply
-
Currently sort by multiple fields is not supported in nitrite 3.x. You need to get the Having said that, in version 4.x, I am introducing support for sort by multiple fields which can take advantage of compound index if available. Stay tuned. |
Beta Was this translation helpful? Give feedback.
Currently sort by multiple fields is not supported in nitrite 3.x. You need to get the
List<T>
fromCursor<T>
and perform the sorting on the list in application side.Having said that, in version 4.x, I am introducing support for sort by multiple fields which can take advantage of compound index if available. Stay tuned.