Member Junction
    Preparing search index...

    Interface SaveContextField

    Pre-save snapshot of a single field's state. Captures dirty flag and old value before the save clears them. The EntityFieldInfo reference provides access to all field metadata (Name, ExtendedType, TSType, etc.) without duplication.

    interface SaveContextField {
        FieldInfo: EntityFieldInfo;
        OldValue: unknown;
        WasDirty: boolean;
    }
    Index

    Properties

    FieldInfo: EntityFieldInfo

    Reference to the field's metadata (Name, ExtendedType, TSType, etc.)

    OldValue: unknown

    The value before the save (original loaded value)

    WasDirty: boolean

    Whether this field was modified before save