where

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

Deprecated (with error)

This method will be removed in release 1.0.0. 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 convert the expected statement to an instance of Executable: `buildStatement { table.deleteWhere(limit, { op }) }.toExecutable().execute(transaction) ?: 0`