Table of Contents

ICriteriaCursor Interface

Represents a forward-only cursor for iterating over the results of a criteria query.

Remarks

Advance the cursor with Next and retrieve the current object with Fetch. The typed generic variant ICriteriaCursor<T> is preferred when the result type is known at compile time.

Syntax

Unit: Aurelius.Criteria.Base

ICriteriaCursor = interface(IInterface);

Methods

Name Description
BaseClass Returns the base entity class of the query.
Fetch Returns the current result object and advances internal state.
Next Advances the cursor to the next result row.
ResultClass Returns the actual result class of objects returned by Fetch.