Construct an initialized PersistentMap based off the values from the existing IDictionary.

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

Syntax

C#
public PersistentMap(
	ISessionImplementor session,
	IDictionary map
)
Visual Basic
Public Sub New ( _
	session As ISessionImplementor, _
	map As IDictionary _
)
Visual C++
public:
PersistentMap(
	ISessionImplementor^ session, 
	IDictionary^ map
)

Parameters

session
Type: NHibernate.Engine..::..ISessionImplementor
The ISession the PersistentMap should be a part of.
map
Type: System.Collections..::..IDictionary
The IDictionary that contains the initial values.

See Also