An array of persisters of entity classes contained in each row of results; implemented by all subclasses

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

Syntax

C#
public abstract ILoadable[] EntityPersisters { get; }
Visual Basic
Public MustOverride ReadOnly Property EntityPersisters As ILoadable()
	Get
Visual C++
public:
virtual property array<ILoadable^>^ EntityPersisters {
	array<ILoadable^>^ get () abstract;
}

Remarks

The setter was added so that classes inheriting from Loader could write a value using the Property instead of directly to the field.

See Also