insert<R> method

InsertValuesBuilder<Schema<R>, R, void> insert<R>(
  1. RaindropExecutor<Delegate> executor,
  2. Table<dynamic, R> into
)

Create an insert builder for an entity.

Implementation

InsertValuesBuilder<Schema<R>, R, void> insert<R>(
  RaindropExecutor executor,
  Table<dynamic, R> into,
) {
  return InsertValuesBuilder(
    executor,
    config: QueryConfig.from({#into: into}),
  );
}