Entity
    Preparing search index...

    Interface IncrementLoadCountEvent

    Event used to record dataloader, cache, and database load counts in EntityDataManager.

    interface IncrementLoadCountEvent {
        entityClassName: string;
        fieldValueCount: number;
        isInTransaction: boolean;
        loadType: EntityLoadMethodType;
        type: IncrementLoadCountEventType;
    }
    Index

    Properties

    entityClassName: string

    Class name of the Entity being loaded.

    fieldValueCount: number

    Number of field values being loaded for this call.

    isInTransaction: boolean

    Whether this load is within a transaction.

    Load method type for this event.

    Type of this event.