Click or drag to resize

DataAccessAdapterCore.SaveEntityAsync Method (IEntity2, CancellationToken)

Async variant of SaveEntity(IEntity2). Saves the passed in entity to the persistent storage. Will not refetch the entity after this save. The entity will stay out-of-sync. If the entity is new, it will be inserted, if the entity is existent, the changed entity fields will be changed in the database. Will do a recursive save. Will pass the concurrency predicate returned by GetConcurrencyPredicate(ConcurrencyPredicateType.Save) as update restriction.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntax
public Task<bool> SaveEntityAsync(
	IEntity2 entityToSave,
	CancellationToken cancellationToken
)

Parameters

entityToSave
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntity2
The entity to save
cancellationToken
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<Boolean>
true if the save was succesful, false otherwise.

Implements

IDataAccessAdapter.SaveEntityAsync(IEntity2, CancellationToken)
Remarks
Will use a current transaction if a transaction is in progress
See Also