persistent class %FileMan.MappedField
extends %Persistent
This class stored information about the mapping of a FileMan field to a property
property Datatype
as %CacheString [ Required ];
Datatype the field mapped to
relationship FILE
as %FileMan.MappedFile [ Inverse = FIELDS,Cardinality = parent ];
property FMFieldName
as %CacheString [ Required ];
The FileMan Field name
property FieldNumber
as %CacheString [ Required ];
The FileMan Field number
property PropertyName
as %CacheString [ Required ];
The Property name the field maps to
property SqlFieldName
as %CacheString [ Required ];
The Sql Field name the field maps to
index (IDKeyIndex on FieldNumber) [IdKey,PrimaryKey,Unique];