exposedTransaction

fun <T> exposedTransaction(transactionIsolation: Int? = exposedDatabase/*?*/.transactionManager/*?*/.defaultIsolationLevel, readOnly: Boolean? = exposedDatabase/*?*/.transactionManager/*?*/.defaultReadOnly, statement: Transaction.() -> T): T(source)

Deprecated

This class no longer wraps an Exposed `Database`. Use the `transaction` API from Exposed directly.

Replace with

transaction(this.exposedDatabase, transactionIsolation, readOnly, statement)