SelectableTypedRootQuery

interface SelectableTypedRootQuery<E : Entity<ID>, ID : Comparable<ID>, R> : TypedRootQuery<E, ID, R>

Functions

Link copied to clipboard
abstract suspend fun execute(con: Connection): List<R>
abstract fun execute(con: Connection): List<R>
Link copied to clipboard
abstract fun limit(limit: Int, offset: Int = 0): SelectableTypedRootQuery<E, ID, R>
Link copied to clipboard
abstract fun <X : Any> reselect(block: RootSelectable<E, ID>.() -> SelectableTypedRootQuery<E, ID, X>): SelectableTypedRootQuery<E, ID, X>
Link copied to clipboard
abstract fun withoutSortingAndPaging(without: Boolean = true): SelectableTypedRootQuery<E, ID, R>