Member Junction
    Preparing search index...

    One entity field that the metadata promises but the entity's base view does not produce. The runtime selects fields by name, so each of these makes the entity unreadable — and a grid renders that as "no data" rather than an error.

    interface FieldResolutionGap {
        baseView: string;
        entity: string;
        field: string;
        isVirtual: boolean;
        schema: string;
    }
    Index

    Properties

    baseView: string

    Entity.BaseView (e.g. "vwEntities")

    entity: string

    Entity.Name (e.g. "MJ: Entities")

    field: string

    EntityField.Name that the view does not expose.

    isVirtual: boolean

    True for join-sourced/computed fields, false for plain base-table columns.

    schema: string

    Entity.SchemaName (e.g. "__mj")