| IAuditorAuditLoadOfEntity Method | 
 
            Audits the successful load of an entity from the database
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
 Syntax
Syntaxvoid AuditLoadOfEntity(
	IEntityCore entity
)
Sub AuditLoadOfEntity ( 
	entity As IEntityCore
)
Parameters
- entity
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCore
 The entity which was loaded. All data of the entity which was loaded is inside the entity.
 Remarks
RemarksBe careful when using this auditing routine, because the audit information is stored inside the auditor which is inside an entity 
            which might not be persisted/deleted later on. This means that if you use the audit data to produce entities which are then 
            returned by GetAuditEntitiesToSave are never persisted if the entity this auditor is the auditor of is never persisted/deleted. 
            In that situation, to get reliable journalling, use an external service to log the audit data.
 See Also
See Also