from<R> method

ProjectionFromBuilder<Schema<R>, R, (V0, V1, V2, V3, V4, V5, V6, V7, V8, V9, V10, V11, V12, V13, V14, V15, V16, V17)> from<R>(
  1. Schema<R> from
)

Create a from builder.

Implementation

ProjectionFromBuilder<
    Schema<R>,
    R,
    (
      V0,
      V1,
      V2,
      V3,
      V4,
      V5,
      V6,
      V7,
      V8,
      V9,
      V10,
      V11,
      V12,
      V13,
      V14,
      V15,
      V16,
      V17
    )> from<R>(Schema<R> from) {
  final selecting = config.selecting! as _Selecting;
  return ProjectionFromBuilder(
    executor,
    config: config.copyWith({
      #selecting: SelectableResult<
          (
            V0,
            V1,
            V2,
            V3,
            V4,
            V5,
            V6,
            V7,
            V8,
            V9,
            V10,
            V11,
            V12,
            V13,
            V14,
            V15,
            V16,
            V17
          )>([
        selecting.s0!,
        selecting.s1!,
        selecting.s2!,
        selecting.s3!,
        selecting.s4!,
        selecting.s5!,
        selecting.s6!,
        selecting.s7!,
        selecting.s8!,
        selecting.s9!,
        selecting.s10!,
        selecting.s11!,
        selecting.s12!,
        selecting.s13!,
        selecting.s14!,
        selecting.s15!,
        selecting.s16!,
        selecting.s17!
      ]),
      #from: from.$,
    }),
  );
}