Function mergeEntityTypeCube

  • Parameters

    Returns {
        caption?: string;
        catalog?: string;
        cube?: Cube;
        defaultMeasure?: string;
        dialect?: any;
        indicators?: Indicator[];
        keys?: string[];
        name: string;
        parameters?: {
            [name: string]: ParameterProperty;
        };
        properties: {};
        semantics?: EntitySemantics;
        syntax?: Syntax;
        visible?: boolean;
    }

    • Optional caption?: string

      Caption for entity

    • Optional catalog?: string

      Catalog of entity

    • Optional cube?: Cube
    • Optional defaultMeasure?: string
    • Optional dialect?: any
    • Optional indicators?: Indicator[]

      Deprecated

      应该移到 EntitySet 里

    • Optional keys?: string[]

      Entity 主键们 与 Parameters 的区别

    • name: string
    • Optional parameters?: {
          [name: string]: ParameterProperty;
      }

      要查询 Entity 的输入参数, 通常是必输字段

    • properties: {}
      • Optional semantics?: EntitySemantics
      • Optional syntax?: Syntax
      • Optional visible?: boolean

        Visible Property

      Deprecated

      看哪里还有用到?

    Generated using TypeDoc