Controls whether bound objects (and their associated objects) that are lazily instanciated are explicityl initialized or left as they are

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

Syntax

C#
bool InitializeLazy { get; set; }
Visual Basic
Property InitializeLazy As Boolean
	Get
	Set
Visual C++
property bool InitializeLazy {
	bool get ();
	void set (bool value);
}

Field Value

True to explicitly initilize lazy objects, false to leave them in the state they are in

See Also