returning<R> method

Returning<R> returning<R>(
  1. Selection<R> selection(
    1. F
    )
)

Prepares a typed RETURNING result on an engine that supports it.

Select scalar SQL expressions or composed projections. Relationships, aggregate functions, and window functions are rejected before execution.

Implementation

Returning<R> returning<R>(Selection<R> Function(F) selection) =>
    Returning.internal(this, selection(queryFields));