select

inline fun FieldSet.select(where: SqlExpressionBuilder.() -> Op<Boolean>): Query

Deprecated (with error)

As part of SELECT DSL design changes, this will be removed in future releases.

Replace with

import import org.jetbrains.exposed.sql.selectAll
selectAll().where { where.invoke() }

inline fun Query.select(where: SqlExpressionBuilder.() -> Op<Boolean>): Query

Deprecated (with error)

This method only exists as part of the migration for SELECT DSL design changes.

Replace with

where { where.invoke() }

Deprecated (with error)

As part of SELECT DSL design changes, this will be removed in future releases.

Replace with

import import org.jetbrains.exposed.sql.selectAll
selectAll().where(where)

fun Query.select(where: Op<Boolean>): Query

Deprecated (with error)

This method only exists as part of the migration for SELECT DSL design changes.

Replace with

where(where)