Interface HonuaOdataFieldInfo

Per-field metadata carried by HonuaOdataMetadata.fields.

interface HonuaOdataFieldInfo {
    isSpatial?: boolean;
    maxLength?: number | "max";
    name: string;
    nullable?: boolean;
    precision?: number;
    scale?: number | "variable" | "floating";
    srid?: number | "variable";
    type: string;
}

Properties

isSpatial?: boolean

True when the field is an Edm.Geography / Edm.Geometry column.

maxLength?: number | "max"
name: string
nullable?: boolean
precision?: number
scale?: number | "variable" | "floating"
srid?: number | "variable"

Optional SRID hint declared in the type or annotation.

type: string