Click or drag to resize

IDao.DeleteExistingAsync Method

Async variant of DeleteExisting(IEntityFields, ITransaction, IPredicate). Deletes an entity from the persistent storage. Which entity is deleted is determined from the passed in EntityFields object.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.10.0.0 (5.10.0)
Syntax
Task<bool> DeleteExistingAsync(
	IEntityFields fields,
	ITransaction containingTransaction,
	IPredicate deleteRestriction,
	CancellationToken cancellationToken
)

Parameters

fields
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFields
The EntityField data to use for the deletion
containingTransaction
Type: SD.LLBLGen.Pro.ORMSupportClasses.ITransaction
A containing transaction, if caller is added to a transaction, or null if not.
deleteRestriction
Type: SD.LLBLGen.Pro.ORMSupportClasses.IPredicate
Predicate expression, meant for concurrency checks in a delete query. Can be null.
cancellationToken
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<Boolean>
true if the delete was succesful, false otherwise
Exceptions
ExceptionCondition
ArgumentNullExceptionfields;fields can't be null
ArgumentNullExceptionWhen fields is null
See Also