Member Junction
    Preparing search index...

    Interface RecordComparisonCompareInput

    Input for RecordComparison.Compare.

    interface RecordComparisonCompareInput {
        EntityName: string;
        IncludeFields?: string[];
        Keys: RecordComparisonKey[];
    }
    Index

    Properties

    EntityName: string

    Registered entity name (e.g. "Accounts"), NOT the physical table name.

    IncludeFields?: string[]

    Optional include-list of field names to restrict the comparison to. When omitted, all non-PK, non-system fields are compared (matched case-insensitively).

    The records to compare, in column order. By convention the first key is the survivor candidate (the reference column); the rest are potential matches.