persistent class %iFind.OriginalWord
extends %Persistent
This table maps all original words appearing in text indexed by an iFind index using namespace-wide
shared storage (cf the IFINDSHAREDSTORAGELOCATION parameter in %iFind.Index.Basic).
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 OriginalWord
as %iFind.Word;
The original word form.
index (IDKey on OriginalWord) [IdKey,PrimaryKey,Unique];