SortOrder
Represents a particular sort direction on a particular column. You should not instantiate SortOrders manually. Instead, call Attribute.ascending or Attribute.descending to obtain a sort order instance:
db.findBy(Message)
.where({threadId: threadId, draft: false})
.order(Message.attributes.date.descending()).then((messages) {
});
Section: Database
Constructor Summary
Public Constructor | ||
public |
constructor(attr: *, direction: string) |
Method Summary
Public Methods | ||
public |
attribute(): * |
|
public |
orderBySQL(klass: *): string |