Member Junction
    Preparing search index...

    Descriptor for the target record set. Either the records are passed inline (records) — used by on-demand scoring and tests — or a source descriptor tells the executor how to fetch them (used by train / materialize over a full population).

    interface RecordSetDescriptor {
        EntityName: string;
        ExtraFilter?: string;
        MaxRows?: number;
        OrderBy?: string;
    }
    Index

    Properties

    EntityName: string

    Entity to read target records from.

    ExtraFilter?: string

    Optional filter narrowing the population.

    MaxRows?: number

    Optional row cap.

    OrderBy?: string

    Optional ordering.