ContextEntitySaveCommittedTEntity Method |
After an entity has been saved and the transaction has been committed (or if no transaction was used: the entity was saved), this routine is called
to move entities which are in the list of new entities and which are now saved to the store.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public void EntitySaveCommitted<TEntity>(
TEntity entity
)
where TEntity : class, IEntityCore
Public Sub EntitySaveCommitted(Of TEntity As {Class, IEntityCore}) (
entity As TEntity
)
Parameters
- entity
- Type: TEntity
Entity.
Type Parameters
- TEntity
Remarks Routine for the framework, you don't have to call this routine yourself
See Also