StepBuilder
Wrapper that provides the same terminal methods as AbstractQueryBuilder, but instead of executing queries, creates TransactionStep for lazy execution within transactions.
Functions
Link copied to clipboard
Creates TransactionStep with toFieldStrict method
Link copied to clipboard
open override fun <T : Any> toListOf(params: Map<String, Any?>, mapper: DataMapper<T>): TransactionStep<List<T>>
Creates TransactionStep with toListOf method using a manual mapper
open override fun <T : Any> toListOf(kType: KType, params: Map<String, Any?>): TransactionStep<List<T>>
Creates TransactionStep with toListOf method
Link copied to clipboard
Creates TransactionStep with toSingleOf method
open override fun <T> toSingleOf(kType: KType, params: Map<String, Any?>, mapper: DataMapper<T & Any>): TransactionStep<T>
Creates TransactionStep with toSingleOf method using a manual mapper
Link copied to clipboard
Creates TransactionStep with toSingleStrict method