deleteWhere
suspend fun <T : Table> DatabaseClient<*>.deleteWhere(table: T, limit: Int? = null, op: T.() -> Op<Boolean>): Int(source)
suspend fun <T : Table> DatabaseClient<*>.deleteWhere(table: T, limit: Int? = null, offset: Long? = null, op: T.() -> Op<Boolean>): Int(source)
Deprecated
The `offset` parameter is removed.
Replace with
this.deleteWhere(table, limit, op)Content copied to clipboard