Called after reading all rows from the IDataReader

Namespace:  NHibernate.Collection
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Overridable Function EndRead ( _
	persister As ICollectionPersister _
) As Boolean
C#
public virtual bool EndRead(
	ICollectionPersister persister
)
Visual C++
public:
virtual bool EndRead(
	ICollectionPersister^ persister
)
JavaScript
function endRead(persister);

Implements

IPersistentCollection..::.EndRead(ICollectionPersister)

Remarks

This should be overridden by sub collections that use temporary collections to store values read from the db.

See Also