Concrete IEntityPersisters implement mapping and persistence logic for a particular class.

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

Syntax

C#
public interface IEntityPersister : IOptimisticCacheSource
Visual Basic
Public Interface IEntityPersister _
	Inherits IOptimisticCacheSource
Visual C++
public interface class IEntityPersister : IOptimisticCacheSource

Remarks

Implementors must be threadsafe (preferably immutable) and must provide a constructor of type matching the signature of: (PersistentClass, SessionFactoryImplementor)

See Also