MCPcopy Create free account
hub / github.com/SeaQL/sea-orm / desc

Method desc

src/executor/cursor.rs:200–203  ·  view source on GitHub ↗

Use descending sort order

(&mut self)

Source from the content-addressed store, hash-verified

198
199 /// Use descending sort order
200 pub fn desc(&mut self) -> &mut Self {
201 self.sort_asc = false;
202 self
203 }
204
205 /// Limit result set to only first N rows in ascending order of the order by column
206 pub fn first(&mut self, num_rows: u64) -> &mut Self {

Callers 1

cursor_paginationFunction · 0.80

Calls

no outgoing calls

Tested by 1

cursor_paginationFunction · 0.64