where

fun where(transaction: Transaction, table: Table, op: Op<Boolean>, isIgnore: Boolean = false, limit: Int? = null): Int

Deprecated (with error)

Statement execution has been removed from exposed-core. Replace directly with a table extension function: `table.deleteWhere(limit) { op }` OR `table.deleteIgnoreWhere(limit) { op }` Or pass the expected statement to an instance of Executable: For JDBC: `DeleteBlockingExecutable(buildStatement { table.deleteWhere(limit, { op }) }).execute(transaction) ?: 0` FOR R2DBC: `DeleteSuspendExecutable(buildStatement { table.deleteWhere(limit, { op }) }).execute(transaction) ?: 0`