IEntityDeleteAsync Method (CancellationToken) | 
 
            Async variant of 
Delete.
            Deletes the Entity from the persistent storage. This method succeeds also when the Entity is not present.
            
 
    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<bool> DeleteAsync(
	CancellationToken cancellationToken
)
Function DeleteAsync ( 
	cancellationToken As CancellationToken
) As Task(Of Boolean)
Parameters
- cancellationToken
 - Type: System.ThreadingCancellationToken
The cancellation token. 
Return Value
Type: 
TaskBoolean
            true if Delete succeeded, false otherwise
            
Exceptions| Exception | Condition | 
|---|
| ORMConcurrencyException | The delete action of an entity failed, probably due to the set delete restriction provided. The entity which failed is enclosed. | 
| ORMQueryExecutionException | When an exception is caught during the delete process. The caught exception is set as the
            inner exception. Encapsulation of database-related exceptions is necessary since these exceptions do not have a common exception framework
            implemented. | 
See Also