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)

Syntax

Visual Basic (Declaration)
Protected Friend MustOverride Property EntityPersisters As ILoadable()
C#
protected internal abstract ILoadable[] EntityPersisters { get; set; }
Visual C++
protected public:
virtual property array<ILoadable^>^ EntityPersisters {
	array<ILoadable^>^ get () abstract;
	void set (array<ILoadable^>^ value) abstract;
}
JavaScript
function get_entityPersisters();
function set_entityPersisters(value);

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