IDataAccessAdapterInsertEntitiesDirectlyAsync Method |
Name | Description | |
---|---|---|
InsertEntitiesDirectlyAsync(Type, DynamicQuery) |
Async variant of InsertEntitiesDirectly(Type, DynamicQuery)
Inserts all rows matching the select query into the target of the entity specified. Which fields are inserted is defined by the select query. Sequenced
Fields are taken care of if they're not specified in the select query. This method will result in an INSERT INTO entityTarget (field1, field2...) SELECT ...
statement.
| |
InsertEntitiesDirectlyAsync(Type, DynamicQuery, CancellationToken) |
Async variant of InsertEntitiesDirectly(Type, DynamicQuery)
Inserts all rows matching the select query into the target of the entity specified. Which fields are inserted is defined by the select query. Sequenced
Fields are taken care of if they're not specified in the select query. This method will result in an INSERT INTO entityTarget (field1, field2...) SELECT ...
statement.
|