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

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

Syntax

C#
public Object[] LoadedState { get; }
Visual Basic
Public ReadOnly Property LoadedState As Object()
	Get
Visual C++
public:
property array<Object^>^ LoadedState {
	array<Object^>^ get ();
}

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