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)

Syntax

Visual Basic (Declaration)
Property InitializeLazy As Boolean
C#
bool InitializeLazy { get; set; }
Visual C++
property bool InitializeLazy {
	bool get ();
	void set (bool value);
}
JavaScript
function get_initializeLazy();
function set_initializeLazy(value);

Field Value

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

See Also