IDataSourceExecute Method |
Executes the specified commands
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxvoid Execute(
IList<DataSourceCommand> commands,
bool atomic = false,
bool allowParallelExecute = true
)
Sub Execute (
commands As IList(Of DataSourceCommand),
Optional atomic As Boolean = false,
Optional allowParallelExecute As Boolean = true
)
void Execute(
IList<DataSourceCommand^>^ commands,
bool atomic = false,
bool allowParallelExecute = true
)
abstract Execute :
commands : IList<DataSourceCommand> *
?atomic : bool *
?allowParallelExecute : bool
(* Defaults:
let _atomic = defaultArg atomic false
let _allowParallelExecute = defaultArg allowParallelExecute true
*)
-> unit
Parameters
- commands
- Type: System.Collections.GenericIListDataSourceCommand
The list of commands to execute - atomic (Optional)
- Type: SystemBoolean
True when all commands must be executed in one atomic transaction - allowParallelExecute (Optional)
- Type: SystemBoolean
True when the commands can be executed in parallel by the server
See Also