insert<R> method
InsertValuesBuilder<Schema<R> , R, void>
insert<R>(
- RaindropExecutor<
Delegate> executor, - 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}),
);
}