Member Junction
    Preparing search index...

    Batch result from DatabaseDesignerPipelineExecutor.CreateEntitiesBatch(). Contains one PipelineExecutionResult per input table, in the same order. Success is true only when every individual result succeeded.

    interface BatchPipelineExecutionResult {
        Results: PipelineExecutionResult[];
        Success: boolean;
        Warnings?: string[];
    }
    Index

    Properties

    Per-table results in the same order as the input table definitions.

    Success: boolean

    True only when every table in Results succeeded.

    Warnings?: string[]

    Non-fatal advisories aggregated from all per-table results.