Audits the successful insert of a new entity into the database.

Namespace: MonoSoftware.LLBLGen
Assembly: MonoSoftware.LLBLGen (in MonoSoftware.LLBLGen.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public override void AuditInsertOfNewEntity(
	IEntityCore entity
)
Visual Basic
Public Overrides Sub AuditInsertOfNewEntity ( 
	entity As IEntityCore
)
Visual C++
public:
virtual void AuditInsertOfNewEntity(
	IEntityCore^ entity
) override
F#
abstract AuditInsertOfNewEntity : 
        entity : IEntityCore -> unit 
override AuditInsertOfNewEntity : 
        entity : IEntityCore -> unit 

Parameters

entity
Type: IEntityCore
The entity saved successfully into the database.

Implements

IAuditorAuditInsertOfNewEntity(IEntityCore)

See Also