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.9.0.0 (5.9.0)
Syntaxpublic 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
 
RemarksRoutine for the framework, you don't have to call this routine yourself
See Also