Persisters for the return values of a List style query

Namespace: NHibernate.Hql.Classic
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

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

Remarks

The Persisters stored by QueryTranslator have to be IQueryable. The setter will attempt to cast the ILoadable array passed in into an IQueryable array.

See Also