updateStatementWithWhereOp

fun <T : Table> T.updateStatementWithWhereOp(where: WhereOp? = null, limit: Int? = null, body: T.(UpdateStatement) -> Unit): UpdateStatement(source)

Deprecated

Use the new `buildStatement` API in Exposed.

Replace with

import org.jetbrains.exposed.v1.core.statements.buildStatement
buildStatement { update(where?.let { { it } }, limit, body) }