@bentley/imodeljs-linux-x64 3.2.1 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,80 +1,84 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <ECSchema schemaName="ChangedElements" alias="chems" version="01.00.05" displayLabel="Changed Elements" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.2">
3
- <ECSchemaReference name="ECDbMap" version="02.00.00" alias="ecdbmap"/>
4
- <ECSchemaReference name="CoreCustomAttributes" version="01.00.01" alias="CoreCA"/>
5
-
6
- <ECEntityClass typeName="Changeset" displayLabel="Changeset" modifier="Sealed">
7
- <ECProperty propertyName="ExtendedProperties" typeName="string" extendedTypeName="Json" />
8
- <ECProperty propertyName="ChangesetId" typeName="string" />
9
- <ECProperty propertyName="ParentId" typeName="string" />
10
- <ECProperty propertyName="PushDate" typeName="dateTime">
11
- <ECCustomAttributes>
12
- <DateTimeInfo xmlns="CoreCustomAttributes.01.00.01">
13
- <DateTimeKind>Utc</DateTimeKind>
14
- </DateTimeInfo>
15
- </ECCustomAttributes>
16
- </ECProperty>
17
- </ECEntityClass>
18
-
19
- <ECEnumeration typeName="OpCode" backingTypeName="int" isStrict="true">
20
- <ECEnumerator name="Insert" value="1" displayLabel="Insert"/>
21
- <ECEnumerator name="Update" value="2" displayLabel="Update"/>
22
- <ECEnumerator name="Delete" value="4" displayLabel="Delete"/>
23
- </ECEnumeration>
24
-
25
- <ECStructClass typeName="InstanceKey" displayLabel="InstanceKey" modifier="Sealed">
26
- <ECProperty propertyName="Id" typeName="long" extendedTypeName="Id"/>
27
- <ECProperty propertyName="ClassId" typeName="long" extendedTypeName="Id"/>
28
- </ECStructClass>
29
-
30
- <ECEntityClass typeName="InstanceChange" displayLabel="Instance Change" modifier="Sealed" description="Represents an instance change in a change summary">
31
- <ECNavigationProperty propertyName="Changeset" relationshipName="ChangesetContainsElementChanges" direction="backward" >
32
- <ECCustomAttributes>
33
- <ForeignKeyConstraint xmlns="ECDbMap.02.00.00">
34
- <OnDeleteAction>Cascade</OnDeleteAction>
35
- </ForeignKeyConstraint>
36
- </ECCustomAttributes>
37
- </ECNavigationProperty>
38
- <ECStructProperty propertyName="ChangedInstance" typeName="InstanceKey" description="Key of the change instance"/>
39
- <ECProperty propertyName="OpCode" typeName="OpCode"/>
40
- <ECProperty propertyName="ModelId" typeName="long" extendedTypeName="Id" />
41
- <ECStructProperty propertyName="Parent" typeName="InstanceKey" description="Key of the parent of the instance" />
42
- <ECProperty propertyName="BBoxLow" typeName="point3d" displayLabel="Bounding Box Low" description="The 'low' point of the element-aligned bounding box of this bis:Element." />
43
- <ECProperty propertyName="BBoxHigh" typeName="point3d" displayLabel="Bounding Box High" description="The 'high' point of the element-aligned bounding box of this bis:Element." />
44
- <ECProperty propertyName="ChangesType" typeName="int" />
45
- <ECArrayProperty propertyName="Properties" typeName="string" minOccurs="0" maxOccurs="unbounded" description="An array of names of properties that changed in this element"/>
46
- <ECArrayProperty propertyName="PropertyOldChecksums" typeName="int" minOccurs="0" maxOccurs="unbounded" description="Checksums for old property values" />
47
- <ECArrayProperty propertyName="PropertyNewChecksums" typeName="int" minOccurs="0" maxOccurs="unbounded" description="Checksums for new property values" />
48
- </ECEntityClass>
49
-
50
- <ECRelationshipClass typeName="ChangesetContainsElementChanges" modifier="Sealed" strength="embedding">
51
- <Source multiplicity="(1..1)" roleLabel="has" polymorphic="false">
52
- <Class class="Changeset"/>
53
- </Source>
54
- <Target multiplicity="(0..*)" roleLabel="is contained in" polymorphic="false">
55
- <Class class="InstanceChange"/>
56
- </Target>
57
- </ECRelationshipClass>
58
-
59
- <ECEntityClass typeName="ModelChange" displayLabel="Model Change" modifier="Sealed" description="Represents a model change in a change summary">
60
- <ECNavigationProperty propertyName="Changeset" relationshipName="ChangesetContainsModelChanges" direction="backward" >
61
- <ECCustomAttributes>
62
- <ForeignKeyConstraint xmlns="ECDbMap.02.00.00">
63
- <OnDeleteAction>Cascade</OnDeleteAction>
64
- </ForeignKeyConstraint>
65
- </ECCustomAttributes>
66
- </ECNavigationProperty>
67
- <ECProperty propertyName="ModelId" typeName="long" extendedTypeName="Id" />
68
- <ECProperty propertyName="BBoxLow" typeName="point3d" displayLabel="Bounding Box Low" description="The 'low' point of the element-aligned bounding box of the elements that changed in the model." />
69
- <ECProperty propertyName="BBoxHigh" typeName="point3d" displayLabel="Bounding Box High" description="The 'high' point of the element-aligned bounding box of the elements that changed in the model." />
70
- </ECEntityClass>
71
-
72
- <ECRelationshipClass typeName="ChangesetContainsModelChanges" modifier="Sealed" strength="embedding">
73
- <Source multiplicity="(1..1)" roleLabel="has" polymorphic="false">
74
- <Class class="Changeset"/>
75
- </Source>
76
- <Target multiplicity="(0..*)" roleLabel="is contained in" polymorphic="false">
77
- <Class class="ModelChange"/>
78
- </Target>
79
- </ECRelationshipClass>
80
- </ECSchema>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- =====================================================================================
3
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
4
+ * See COPYRIGHT.md in the repository root for full copyright notice.
5
+ ========================================================================================== -->
6
+ <ECSchema schemaName="ChangedElements" alias="chems" version="01.00.05" displayLabel="Changed Elements" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.2">
7
+ <ECSchemaReference name="ECDbMap" version="02.00.00" alias="ecdbmap"/>
8
+ <ECSchemaReference name="CoreCustomAttributes" version="01.00.01" alias="CoreCA"/>
9
+
10
+ <ECEntityClass typeName="Changeset" displayLabel="Changeset" modifier="Sealed">
11
+ <ECProperty propertyName="ExtendedProperties" typeName="string" extendedTypeName="Json" />
12
+ <ECProperty propertyName="ChangesetId" typeName="string" />
13
+ <ECProperty propertyName="ParentId" typeName="string" />
14
+ <ECProperty propertyName="PushDate" typeName="dateTime">
15
+ <ECCustomAttributes>
16
+ <DateTimeInfo xmlns="CoreCustomAttributes.01.00.01">
17
+ <DateTimeKind>Utc</DateTimeKind>
18
+ </DateTimeInfo>
19
+ </ECCustomAttributes>
20
+ </ECProperty>
21
+ </ECEntityClass>
22
+
23
+ <ECEnumeration typeName="OpCode" backingTypeName="int" isStrict="true">
24
+ <ECEnumerator name="Insert" value="1" displayLabel="Insert"/>
25
+ <ECEnumerator name="Update" value="2" displayLabel="Update"/>
26
+ <ECEnumerator name="Delete" value="4" displayLabel="Delete"/>
27
+ </ECEnumeration>
28
+
29
+ <ECStructClass typeName="InstanceKey" displayLabel="InstanceKey" modifier="Sealed">
30
+ <ECProperty propertyName="Id" typeName="long" extendedTypeName="Id"/>
31
+ <ECProperty propertyName="ClassId" typeName="long" extendedTypeName="Id"/>
32
+ </ECStructClass>
33
+
34
+ <ECEntityClass typeName="InstanceChange" displayLabel="Instance Change" modifier="Sealed" description="Represents an instance change in a change summary">
35
+ <ECNavigationProperty propertyName="Changeset" relationshipName="ChangesetContainsElementChanges" direction="backward" >
36
+ <ECCustomAttributes>
37
+ <ForeignKeyConstraint xmlns="ECDbMap.02.00.00">
38
+ <OnDeleteAction>Cascade</OnDeleteAction>
39
+ </ForeignKeyConstraint>
40
+ </ECCustomAttributes>
41
+ </ECNavigationProperty>
42
+ <ECStructProperty propertyName="ChangedInstance" typeName="InstanceKey" description="Key of the change instance"/>
43
+ <ECProperty propertyName="OpCode" typeName="OpCode"/>
44
+ <ECProperty propertyName="ModelId" typeName="long" extendedTypeName="Id" />
45
+ <ECStructProperty propertyName="Parent" typeName="InstanceKey" description="Key of the parent of the instance" />
46
+ <ECProperty propertyName="BBoxLow" typeName="point3d" displayLabel="Bounding Box Low" description="The 'low' point of the element-aligned bounding box of this bis:Element." />
47
+ <ECProperty propertyName="BBoxHigh" typeName="point3d" displayLabel="Bounding Box High" description="The 'high' point of the element-aligned bounding box of this bis:Element." />
48
+ <ECProperty propertyName="ChangesType" typeName="int" />
49
+ <ECArrayProperty propertyName="Properties" typeName="string" minOccurs="0" maxOccurs="unbounded" description="An array of names of properties that changed in this element"/>
50
+ <ECArrayProperty propertyName="PropertyOldChecksums" typeName="int" minOccurs="0" maxOccurs="unbounded" description="Checksums for old property values" />
51
+ <ECArrayProperty propertyName="PropertyNewChecksums" typeName="int" minOccurs="0" maxOccurs="unbounded" description="Checksums for new property values" />
52
+ </ECEntityClass>
53
+
54
+ <ECRelationshipClass typeName="ChangesetContainsElementChanges" modifier="Sealed" strength="embedding">
55
+ <Source multiplicity="(1..1)" roleLabel="has" polymorphic="false">
56
+ <Class class="Changeset"/>
57
+ </Source>
58
+ <Target multiplicity="(0..*)" roleLabel="is contained in" polymorphic="false">
59
+ <Class class="InstanceChange"/>
60
+ </Target>
61
+ </ECRelationshipClass>
62
+
63
+ <ECEntityClass typeName="ModelChange" displayLabel="Model Change" modifier="Sealed" description="Represents a model change in a change summary">
64
+ <ECNavigationProperty propertyName="Changeset" relationshipName="ChangesetContainsModelChanges" direction="backward" >
65
+ <ECCustomAttributes>
66
+ <ForeignKeyConstraint xmlns="ECDbMap.02.00.00">
67
+ <OnDeleteAction>Cascade</OnDeleteAction>
68
+ </ForeignKeyConstraint>
69
+ </ECCustomAttributes>
70
+ </ECNavigationProperty>
71
+ <ECProperty propertyName="ModelId" typeName="long" extendedTypeName="Id" />
72
+ <ECProperty propertyName="BBoxLow" typeName="point3d" displayLabel="Bounding Box Low" description="The 'low' point of the element-aligned bounding box of the elements that changed in the model." />
73
+ <ECProperty propertyName="BBoxHigh" typeName="point3d" displayLabel="Bounding Box High" description="The 'high' point of the element-aligned bounding box of the elements that changed in the model." />
74
+ </ECEntityClass>
75
+
76
+ <ECRelationshipClass typeName="ChangesetContainsModelChanges" modifier="Sealed" strength="embedding">
77
+ <Source multiplicity="(1..1)" roleLabel="has" polymorphic="false">
78
+ <Class class="Changeset"/>
79
+ </Source>
80
+ <Target multiplicity="(0..*)" roleLabel="is contained in" polymorphic="false">
81
+ <Class class="ModelChange"/>
82
+ </Target>
83
+ </ECRelationshipClass>
84
+ </ECSchema>
@@ -1,4 +1,8 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- =====================================================================================
3
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
4
+ * See COPYRIGHT.md in the repository root for full copyright notice.
5
+ ========================================================================================== -->
2
6
  <ECSchema schemaName="ECDbChange" alias="change" version="01.00.01" displayLabel="ECDb Change" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.2">
3
7
  <ECSchemaReference name="ECDbMap" version="02.00.00" alias="ecdbmap"/>
4
8
 
@@ -1,4 +1,8 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- =====================================================================================
3
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
4
+ * See COPYRIGHT.md in the repository root for full copyright notice.
5
+ ========================================================================================== -->
2
6
  <ECSchema schemaName="ECDbFileInfo" alias="ecdbf" version="02.00.01" description="ECDb FileInfo" displayLabel="ECDb FileInfo" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.2">
3
7
  <ECSchemaReference name="ECDbMap" version="02.00.00" alias="ecdbmap"/>
4
8
  <ECSchemaReference name="CoreCustomAttributes" version="01.00.00" alias="CoreCA"/>
@@ -1,50 +1,54 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <ECSchema schemaName="ECDbMap" alias="ecdbmap" version="02.00.00" description="Custom attributes that customize ECDb's ECSchema to database mapping." displayLabel="ECDb DB Mapping" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.1">
3
- <ECCustomAttributeClass typeName="SchemaMap" modifier="Sealed" appliesTo="Schema">
4
- <ECProperty propertyName="TablePrefix" typeName="string" description="Specifies a prefix for generated tables. If not specified, the alias of the ECSchema is used"/>
5
- </ECCustomAttributeClass>
6
-
7
- <ECCustomAttributeClass typeName="ClassMap" modifier="Sealed" appliesTo="EntityClass, RelationshipClass">
8
- <ECProperty propertyName="MapStrategy" typeName="string" description="Defines how the ECClass is mapped to table(s). Values: OwnTable (default), TablePerHierarchy, ExistingTable, NotMapped"/>
9
- <ECProperty propertyName="TableName" typeName="string" description="If MapStrategy is 'ExistingTable' provide the table name here. Must not be set in all other cases."/>
10
- <ECProperty propertyName="ECInstanceIdColumn" typeName="string" description="Optionally specify the name of custom 'primary key' column which must be of type Int64."/>
11
- </ECCustomAttributeClass>
12
-
13
- <ECCustomAttributeClass typeName="JoinedTablePerDirectSubclass" description="Maps subclasses and their children to a joined table. Can only be applied to classes in a hierarchy using MapStrategy TablePerHierarchy." modifier="Sealed" appliesTo="EntityClass"/>
14
-
15
- <ECCustomAttributeClass typeName="ShareColumns" description="Allows to share columns amongst ECProperties. Can only be applied to MapStrategy TablePerHierarchy" modifier="Sealed" appliesTo="EntityClass, RelationshipClass">
16
- <ECProperty propertyName="ApplyToSubclassesOnly" typeName="boolean" description="False (Default):Columns are shared for the properties of the ECClass to which this CA is applied and all its subclasses. True: Columns are not shared for this ECClass but for all of its subclasses."/>
17
- <ECProperty propertyName="MaxSharedColumnsBeforeOverflow" typeName="int" description="Maximum number of shared columns to use before using an overflow table (optional). If not specified, ECDb will create as many shared columns until the table has 63 columns."/>
18
- </ECCustomAttributeClass>
19
-
20
- <ECCustomAttributeClass typeName="DbIndexList" modifier="Sealed" appliesTo="EntityClass, RelationshipClass">
21
- <ECStructArrayProperty propertyName="Indexes" typeName="DbIndex" description="List of indexes on properties of this class. It can be use to improve query performance or to add unique constraint." minOccurs="1" maxOccurs="unbounded"/>
22
- </ECCustomAttributeClass>
23
-
24
- <ECStructClass typeName="DbIndex" description="Specify a database index for an ECClass." modifier="Sealed">
25
- <ECProperty propertyName="Name" typeName="string" description="Name of the index. Must follow EC identifier rules. It needs to be globally unique in the database."/>
26
- <ECProperty propertyName="IsUnique" typeName="boolean" description="Default: false. If true, all values in the indexed properties must be unique."/>
27
- <ECArrayProperty propertyName="Properties" typeName="string" description="List of properties that make up the index. Only properties of primitive type are supported." minOccurs="1" maxOccurs="unbounded"/>
28
- <ECProperty propertyName="Where" typeName="string" description="Where constraint for index"/>
29
- </ECStructClass>
30
-
31
- <ECCustomAttributeClass typeName="PropertyMap" modifier="Sealed" appliesTo="PrimitiveProperty">
32
- <ECProperty propertyName="ColumnName" typeName="string" description="If not specified, the ECProperty name is used. It must follow EC Identifier specification."/>
33
- <ECProperty propertyName="IsNullable" typeName="boolean" description="If false, values must not be unset for this property."/>
34
- <ECProperty propertyName="IsUnique" typeName="boolean" description="Only allow unique values for this property."/>
35
- <ECProperty propertyName="Collation" typeName="string" description="Specifies how string comparisons should work for this property. Possible values: Binary (default): bit to bit matching. NoCase: The same as binary, except that the 26 upper case characters of ASCII are folded to their lower case equivalents before comparing. Note that it only folds ASCII characters. RTrim: The same as binary, except that trailing space characters are ignored."/>
36
- </ECCustomAttributeClass>
37
-
38
- <ECCustomAttributeClass typeName="ForeignKeyConstraint" modifier="Sealed" appliesTo="NavigationProperty" description="Creates a foreign key for this navigation property.">
39
- <ECProperty propertyName="OnDeleteAction" typeName="string" description="Possible values: NoAction (default), Cascade (which deletes child rows when parent row is deleted), SetNull(foreign key property in child is set to NULL), Restrict (cannot delete parent if it still has children)."/>
40
- <ECProperty propertyName="OnUpdateAction" typeName="string" description="Possible values: NoAction (default), Cascade (which updates child foreign key when parent primary key is updated)."/>
41
- </ECCustomAttributeClass>
42
-
43
- <ECCustomAttributeClass typeName="LinkTableRelationshipMap" modifier="Sealed" appliesTo="RelationshipClass">
44
- <ECProperty propertyName="SourceECInstanceIdColumn" typeName="string" description="Optional. If not set, a default column name will be used"/>
45
- <ECProperty propertyName="TargetECInstanceIdColumn" typeName="string" description="Optional. If not set, a default column name will be used"/>
46
- <ECProperty propertyName="CreateForeignKeyConstraints" typeName="boolean" description="Default: true. If set to false, no foreign key constraints are created on the link table. In that case, deleting instance does not delete its relationships in the link table."/>
47
- <ECProperty propertyName="AllowDuplicateRelationships" typeName="boolean" description="Default: false. If set to true duplicate relationships are allowed."/>
48
- </ECCustomAttributeClass>
49
-
50
- </ECSchema>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- =====================================================================================
3
+ * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
4
+ * See COPYRIGHT.md in the repository root for full copyright notice.
5
+ ========================================================================================== -->
6
+ <ECSchema schemaName="ECDbMap" alias="ecdbmap" version="02.00.00" description="Custom attributes that customize ECDb's ECSchema to database mapping." displayLabel="ECDb DB Mapping" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.1">
7
+ <ECCustomAttributeClass typeName="SchemaMap" modifier="Sealed" appliesTo="Schema">
8
+ <ECProperty propertyName="TablePrefix" typeName="string" description="Specifies a prefix for generated tables. If not specified, the alias of the ECSchema is used"/>
9
+ </ECCustomAttributeClass>
10
+
11
+ <ECCustomAttributeClass typeName="ClassMap" modifier="Sealed" appliesTo="EntityClass, RelationshipClass">
12
+ <ECProperty propertyName="MapStrategy" typeName="string" description="Defines how the ECClass is mapped to table(s). Values: OwnTable (default), TablePerHierarchy, ExistingTable, NotMapped"/>
13
+ <ECProperty propertyName="TableName" typeName="string" description="If MapStrategy is 'ExistingTable' provide the table name here. Must not be set in all other cases."/>
14
+ <ECProperty propertyName="ECInstanceIdColumn" typeName="string" description="Optionally specify the name of custom 'primary key' column which must be of type Int64."/>
15
+ </ECCustomAttributeClass>
16
+
17
+ <ECCustomAttributeClass typeName="JoinedTablePerDirectSubclass" description="Maps subclasses and their children to a joined table. Can only be applied to classes in a hierarchy using MapStrategy TablePerHierarchy." modifier="Sealed" appliesTo="EntityClass"/>
18
+
19
+ <ECCustomAttributeClass typeName="ShareColumns" description="Allows to share columns amongst ECProperties. Can only be applied to MapStrategy TablePerHierarchy" modifier="Sealed" appliesTo="EntityClass, RelationshipClass">
20
+ <ECProperty propertyName="ApplyToSubclassesOnly" typeName="boolean" description="False (Default):Columns are shared for the properties of the ECClass to which this CA is applied and all its subclasses. True: Columns are not shared for this ECClass but for all of its subclasses."/>
21
+ <ECProperty propertyName="MaxSharedColumnsBeforeOverflow" typeName="int" description="Maximum number of shared columns to use before using an overflow table (optional). If not specified, ECDb will create as many shared columns until the table has 63 columns."/>
22
+ </ECCustomAttributeClass>
23
+
24
+ <ECCustomAttributeClass typeName="DbIndexList" modifier="Sealed" appliesTo="EntityClass, RelationshipClass">
25
+ <ECStructArrayProperty propertyName="Indexes" typeName="DbIndex" description="List of indexes on properties of this class. It can be use to improve query performance or to add unique constraint." minOccurs="1" maxOccurs="unbounded"/>
26
+ </ECCustomAttributeClass>
27
+
28
+ <ECStructClass typeName="DbIndex" description="Specify a database index for an ECClass." modifier="Sealed">
29
+ <ECProperty propertyName="Name" typeName="string" description="Name of the index. Must follow EC identifier rules. It needs to be globally unique in the database."/>
30
+ <ECProperty propertyName="IsUnique" typeName="boolean" description="Default: false. If true, all values in the indexed properties must be unique."/>
31
+ <ECArrayProperty propertyName="Properties" typeName="string" description="List of properties that make up the index. Only properties of primitive type are supported." minOccurs="1" maxOccurs="unbounded"/>
32
+ <ECProperty propertyName="Where" typeName="string" description="Where constraint for index"/>
33
+ </ECStructClass>
34
+
35
+ <ECCustomAttributeClass typeName="PropertyMap" modifier="Sealed" appliesTo="PrimitiveProperty">
36
+ <ECProperty propertyName="ColumnName" typeName="string" description="If not specified, the ECProperty name is used. It must follow EC Identifier specification."/>
37
+ <ECProperty propertyName="IsNullable" typeName="boolean" description="If false, values must not be unset for this property."/>
38
+ <ECProperty propertyName="IsUnique" typeName="boolean" description="Only allow unique values for this property."/>
39
+ <ECProperty propertyName="Collation" typeName="string" description="Specifies how string comparisons should work for this property. Possible values: Binary (default): bit to bit matching. NoCase: The same as binary, except that the 26 upper case characters of ASCII are folded to their lower case equivalents before comparing. Note that it only folds ASCII characters. RTrim: The same as binary, except that trailing space characters are ignored."/>
40
+ </ECCustomAttributeClass>
41
+
42
+ <ECCustomAttributeClass typeName="ForeignKeyConstraint" modifier="Sealed" appliesTo="NavigationProperty" description="Creates a foreign key for this navigation property.">
43
+ <ECProperty propertyName="OnDeleteAction" typeName="string" description="Possible values: NoAction (default), Cascade (which deletes child rows when parent row is deleted), SetNull(foreign key property in child is set to NULL), Restrict (cannot delete parent if it still has children)."/>
44
+ <ECProperty propertyName="OnUpdateAction" typeName="string" description="Possible values: NoAction (default), Cascade (which updates child foreign key when parent primary key is updated)."/>
45
+ </ECCustomAttributeClass>
46
+
47
+ <ECCustomAttributeClass typeName="LinkTableRelationshipMap" modifier="Sealed" appliesTo="RelationshipClass">
48
+ <ECProperty propertyName="SourceECInstanceIdColumn" typeName="string" description="Optional. If not set, a default column name will be used"/>
49
+ <ECProperty propertyName="TargetECInstanceIdColumn" typeName="string" description="Optional. If not set, a default column name will be used"/>
50
+ <ECProperty propertyName="CreateForeignKeyConstraints" typeName="boolean" description="Default: true. If set to false, no foreign key constraints are created on the link table. In that case, deleting instance does not delete its relationships in the link table."/>
51
+ <ECProperty propertyName="AllowDuplicateRelationships" typeName="boolean" description="Default: false. If set to true duplicate relationships are allowed."/>
52
+ </ECCustomAttributeClass>
53
+
54
+ </ECSchema>