row property
Selection<(A, B, C)>
get
row
Preserves column positions and individual nullability in the result.
Implementation
Selection<(A, B, C)> get row =>
_SqlRow([$1, $2, $3], (v) => (v[0] as A, v[1] as B, v[2] as C));