RelationshipStorageType Enumeration |
Determines if a relationship of the corresponding type is managed
by SQLBridge and how it is retrieved/stored from/to the database.
Namespace:
PDTec.IceNet.Core.Database.SqlBridge
Assembly:
PDTec.IceNet.Core (in PDTec.IceNet.Core.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax public enum RelationshipStorageType
Members
| Member name | Value | Description |
---|
| Native | 0 |
The relationship is completely managed by ice.NET and connects native
ice.NET objects. No need to specify SQLBridge settings for the
corresponding relationship type.
|
| OutImplicit | 1 |
The relationship connects ice.NET objects (From direction) to objects
managed by SQLBridge (To direction). The relationship is not
stored within the ice.NET repository but is established by evaluating
a configured rule (e.g. an attribute value of the ice.NET object
corresponds to a column of the SQLBridge object view).
|
| InImplicit | 2 |
The relationship connects objects managed by SQLBridge (From direction)
to ice.NET objects (To direction). The relationship is not
stored within the ice.NET repository but is established by evaluating
a configured rule (e.g. an attribute value of the ice.NET object
corresponds to a column of the SQLBridge object view).
|
| External | 3 |
The relationship connects two objects managed by SQLBridge.
|
See Also