AsyncTableQuery<T>
Query to an asynchronous database connection.
Creates a new async query that uses given the synchronous query.
Execute SELECT COUNT(*) on the query
Execute SELECT COUNT(*) on the query with an additional WHERE clause.
Delete all the rows that match this query and the given predicate.
Delete all the rows that match this query.
Returns the element at a given index
Returns the first element of this query.
Returns the first element of this query that matches the predicate.
Returns the first element of this query, or null if no element is found.
Returns the first element of this query that matches the predicate.
Order the query results according to a key.
Order the query results according to a key.
Skips a given number of elements from the query and then yields the remainder.
Yields a given number of elements from the query and then skips the remainder.
Order the query results according to a key.
Order the query results according to a key.
Queries the database and returns the results as an array.
Queries the database and returns the results as a List.
Filters the query based on a predicate.