Provides a snapshot VIEW in the form of a List of the contents of the IdentityMap. You can safely iterate over this VIEW and modify the actual IdentityMap because the VIEW is a copy of the contents, not a reference to the existing Map. Contains a copy (not that actual instance stored) of the DictionaryEntries in a List.

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

Syntax

C#
public IList EntryList { get; }
Visual Basic
Public ReadOnly Property EntryList As IList
	Get
Visual C++
public:
property IList^ EntryList {
	IList^ get ();
}

See Also