A temporary list that holds the objects while the PersistentSet is being populated from the database.

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

Syntax

Visual Basic (Declaration)
<NonSerializedAttribute> _
Protected tempList As IList
C#
[NonSerializedAttribute]
protected IList tempList
Visual C++
[NonSerializedAttribute]
protected:
IList^ tempList
JavaScript
tempList

Remarks

This is necessary to ensure that the object being added to the PersistentSet doesn't have its' GetHashCode() and Equals() methods called during the load process.

See Also