Constructs the NormalizedEntityPerister for the PersistentClass.

Namespace: NHibernate.Persister.Entity
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public JoinedSubclassEntityPersister(
	PersistentClass persistentClass,
	ICacheConcurrencyStrategy cache,
	ISessionFactoryImplementor factory,
	IMapping mapping
)
Visual Basic
Public Sub New ( _
	persistentClass As PersistentClass, _
	cache As ICacheConcurrencyStrategy, _
	factory As ISessionFactoryImplementor, _
	mapping As IMapping _
)
Visual C++
public:
JoinedSubclassEntityPersister(
	PersistentClass^ persistentClass, 
	ICacheConcurrencyStrategy^ cache, 
	ISessionFactoryImplementor^ factory, 
	IMapping^ mapping
)

Parameters

persistentClass
Type: NHibernate.Mapping..::..PersistentClass
The PersistentClass to create the EntityPersister for.
cache
Type: NHibernate.Cache..::..ICacheConcurrencyStrategy
The configured ICacheConcurrencyStrategy.
factory
Type: NHibernate.Engine..::..ISessionFactoryImplementor
The SessionFactory that this EntityPersister will be stored in.
mapping
Type: NHibernate.Engine..::..IMapping
The mapping used to retrieve type information.

See Also