selectBatch
suspend fun <E> DatabaseClient<*>.selectBatch(fieldSet: FieldSet, buildQuery: FieldSet.(E) -> Query, data: Iterable<E>): Sequence<RowSet<ResultRow>>(source)
Deprecated
Renamed to `batchSelect` and the signature updated.
Replace with
this.batchSelect(data, { columnSet.buildQuery(it) })Content copied to clipboard