Gets or sets the snapshot of the Entity when it was marked as being ready for deletion.

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

Syntax

C#
public Object[] DeletedState { get; set; }
Visual Basic
Public Property DeletedState As Object()
	Get
	Set
Visual C++
public:
property array<Object^>^ DeletedState {
	array<Object^>^ get ();
	void set (array<Object^>^ value);
}

Field Value

The snapshot of the Entity.

Remarks

This will be nullNothingnullptra null reference (Nothing in Visual Basic) if the Entity is not being deleted.

See Also