hidden deprecatedabstract persistent class %iFind.Index.AbstractPath
extends %Persistent
This class is deprecated and will no longer be used when generating table projections for an iFind index.
Read-only projection of the entities making up a path in a particular record.
Controlled through the IFINDADVANCED parameter in %iFind.Index.Analytic
parameter READONLY = 1;
READONLY = 1 means that objects can be created, opened but not saved or deleted.
Tables are projected to SQL as READONLY.
property EntId
as %iFind.Entity;
An entity occurring in this path
property PathId
as %Integer;
The Path ID
property Pos
as %Integer;
The entity's position within this path
property RecId
as %Integer;
The record in which the path appears
index (PathIndex on RecId,PathId,Pos) [IdKey];