IDataAccessAdapterSaveEntityAsync Method (IEntity2, Boolean, Boolean) |
Async variant of
SaveEntity(IEntity2, Boolean, Boolean).
Saves the passed in entity to the persistent storage. 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 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.4.0.0 (5.4.0)
Syntax Task<bool> SaveEntityAsync(
IEntity2 entityToSave,
bool refetchAfterSave,
bool recurse
)
Function SaveEntityAsync (
entityToSave As IEntity2,
refetchAfterSave As Boolean,
recurse As Boolean
) As Task(Of Boolean)
Parameters
- entityToSave
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntity2
The entity to save - refetchAfterSave
- Type: SystemBoolean
When true, it will refetch the entity from the persistent storage so it will be up-to-date
after the save action. - recurse
- Type: SystemBoolean
When true, it will save all dirty objects referenced (directly or indirectly) by entityToSave also.
Return Value
Type:
TaskBooleantrue if the save was succesful, false otherwise.
Remarks Will use a current transaction if a transaction is in progress
See Also