Gets or sets the snapshot of the Entity when it was loaded from the database.

Namespace:  NHibernate.Impl
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Property LoadedState As Object()
C#
public Object[] LoadedState { get; set; }
Visual C++
public:
property array<Object^>^ LoadedState {
	array<Object^>^ get ();
	void set (array<Object^>^ value);
}
JavaScript
function get_loadedState();
function set_loadedState(value);

Field Value

The snapshot of the Entity.

Remarks

There will only be a value when the Entity was loaded in the current Session.

See Also