Member Junction
    Preparing search index...

    Result returned by RenderPipeline.Run.

    interface RenderResult {
        AppliedParameters: Record<string, string>;
        CTEs: CompositionCTEInfo[];
        FinalSQL: string;
        HasCompositions: boolean;
        PagingResult: PagingWrappedSQL | null;
        Trace: RenderTrace;
    }
    Index

    Properties

    AppliedParameters: Record<string, string>

    Parameters that were applied during template processing

    Metadata about each CTE generated during composition

    FinalSQL: string

    The final SQL ready for execution

    HasCompositions: boolean

    Whether composition tokens were found and resolved

    PagingResult: PagingWrappedSQL | null

    Paging result (if paging was applied)

    Pipeline trace for error diagnosis