updateWithMapper

suspend fun <Data : Any> DatabaseClient<*>.updateWithMapper(table: Table, where: () -> Op<Boolean>? = null, limit: Int? = null, data: Data, dataUpdateMapper: DataUpdateMapper<Data>): Int(source)

In most cases you should specify the fields to update in a more detailed way instead of using this function.