toExposedResultRow

fun Row.toExposedResultRow(fieldExpressionSet: Set<Expression<*>>): ResultRow(source)


fun Row.toExposedResultRow(query: Query): ResultRow(source)

Deprecated

It's a rare case that only one row is transformed and this function calls `Query.getFieldExpressionSet` when transforming every row. Call `getFieldExpressionSet` directly with or without an Exposed `transaction` yourself to have finer-grained control and slightly improve performance.

Replace with

toExposedResultRow(query.getFieldExpressionSet())

See also