DataModel

DataModel class

Represents the data model.

class DataModel;

Properties

PropertyTypeDescription
relationshipsDataModelRelationshipCollectionReadonly. Gets all relationships of the tables in the data model.
tablesDataModelTableCollectionReadonly. Gets all tables in the data model.

Methods

MethodDescription
getRelationships()@deprecated. Please use the ‘relationships’ property instead. Gets all relationships of the tables in the data model.
getTables()@deprecated. Please use the ’tables’ property instead. Gets all tables in the data model.
isNull()Checks whether the implementation object is null.

relationships

Readonly. Gets all relationships of the tables in the data model.

relationships : DataModelRelationshipCollection;

tables

Readonly. Gets all tables in the data model.

tables : DataModelTableCollection;

getRelationships()

@deprecated. Please use the ‘relationships’ property instead. Gets all relationships of the tables in the data model.

getRelationships() : DataModelRelationshipCollection;

Returns

DataModelRelationshipCollection

getTables()

@deprecated. Please use the ’tables’ property instead. Gets all tables in the data model.

getTables() : DataModelTableCollection;

Returns

DataModelTableCollection

isNull()

Checks whether the implementation object is null.

isNull() : boolean;