KConfigurableRootQuery

interface KConfigurableRootQuery<E : Any, R> : KTypedRootQuery<R>

Functions

Link copied to clipboard
@NewChain
abstract fun distinct(): KConfigurableRootQuery<E, R>
Link copied to clipboard
abstract fun execute(con: Connection? = null): List<R>
Link copied to clipboard
@NewChain
abstract fun forUpdate(): KConfigurableRootQuery<E, R>
Link copied to clipboard
abstract infix fun intersect(other: KTypedRootQuery<R>): KTypedRootQuery<R>
Link copied to clipboard
@NewChain
abstract fun limit(limit: Int, offset: Int): KConfigurableRootQuery<E, R>
Link copied to clipboard
abstract infix operator fun minus(other: KTypedRootQuery<R>): KTypedRootQuery<R>
Link copied to clipboard
@NewChain
abstract fun <X> reselect(block: KMutableRootQuery<E>.() -> KConfigurableRootQuery<E, X>): KConfigurableRootQuery<E, X>
Link copied to clipboard
abstract infix fun union(other: KTypedRootQuery<R>): KTypedRootQuery<R>
Link copied to clipboard
abstract infix fun unionAll(other: KTypedRootQuery<R>): KTypedRootQuery<R>
Link copied to clipboard
@NewChain
abstract fun withoutSortingAndPaging(): KConfigurableRootQuery<E, R>