IDaoExecuteActionQueryAsync Method  | 
  
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
SyntaxTask<int> ExecuteActionQueryAsync(
	IActionQuery queryToExecute,
	ITransaction containingTransaction,
	CancellationToken cancellationToken
)
Function ExecuteActionQueryAsync ( 
	queryToExecute As IActionQuery,
	containingTransaction As ITransaction,
	cancellationToken As CancellationToken
) As Task(Of Integer)
Parameters
- queryToExecute
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIActionQuery
ActionQuery to execute. - containingTransaction
 - Type: SD.LLBLGen.Pro.ORMSupportClassesITransaction
A containing transaction if caller is added to a transaction, or null of not. - cancellationToken
 - Type: System.ThreadingCancellationToken
The cancellation token. 
Return Value
Type: 
TaskInt32
            execution result, which is the amount of rows affected (if applicable)
            
See Also