selectBatched

Deprecated (with error)

As part of SELECT DSL design changes, this will be removed in future releases.

Replace with

import import org.jetbrains.exposed.sql.selectAll
selectAll().where { where.invoke() }.fetchBatchedResults(batchSize)

Deprecated (with error)

This method only exists as part of the migration for SELECT DSL design changes.

Replace with

where { where.invoke() }.fetchBatchedResults(batchSize)