Instantiates a non-lazy set (the underlying set is constructed from the incoming set reference).

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

Syntax

C#
public PersistentSet(
	ISessionImplementor session,
	ISet original
)
Visual Basic
Public Sub New ( _
	session As ISessionImplementor, _
	original As ISet _
)
Visual C++
public:
PersistentSet(
	ISessionImplementor^ session, 
	ISet^ original
)

Parameters

session
Type: NHibernate.Engine..::..ISessionImplementor
The session to which this set will belong.
original
Type: Iesi.Collections..::..ISet
The underlying set data.

See Also