Called just after the entities properties have been initialized.

Namespace: NHibernate.Tuple.Entity
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
void AfterInitialize(
	Object entity,
	bool lazyPropertiesAreUnfetched,
	ISessionImplementor session
)
Visual Basic
Sub AfterInitialize ( _
	entity As Object, _
	lazyPropertiesAreUnfetched As Boolean, _
	session As ISessionImplementor _
)
Visual C++
void AfterInitialize(
	Object^ entity, 
	bool lazyPropertiesAreUnfetched, 
	ISessionImplementor^ session
)

Parameters

entity
Type: System..::..Object
The entity being initialized.
lazyPropertiesAreUnfetched
Type: System..::..Boolean
Are defined lazy properties currently unfecthed
session
Type: NHibernate.Engine..::..ISessionImplementor
The session initializing this entity.

See Also