row property

Selection<(A, B, C, D, E, F)> get row

Preserves column positions and individual nullability in the result.

Implementation

Selection<(A, B, C, D, E, F)> get row => _SqlRow([
  $1,
  $2,
  $3,
  $4,
  $5,
  $6,
], (v) => (v[0] as A, v[1] as B, v[2] as C, v[3] as D, v[4] as E, v[5] as F));