deprecatedpersistent class %FileMan.MappedField
extends %Persistent
This class stored information about the mapping of a FileMan field to a property
Note: The FileMan toolset is available and fully supported in InterSystems IRIS for existing FileMan users.
InterSystems recommends against starting new development projects using FileMan.
property Datatype
as %RawString [ Required ];
Datatype the field mapped to
property FMFieldName
as %RawString [ Required ];
The FileMan Field name
property FieldNumber
as %RawString [ Required ];
The FileMan Field number
relationship MappedFilePackage
as %FileMan.MappedFilePackage [ Inverse = MappedFields,Cardinality = parent ];
property PropertyName
as %RawString [ Required ];
The Property name the field maps to
property SqlFieldName
as %RawString [ Required ];
The Sql Field name the field maps to
index (IDKeyIndex on FieldNumber) [IdKey,PrimaryKey,Unique];