Enum ObjectDependencyEnum
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Stores options for handling the referential integrity of references between object types (foreign keys).
public enum ObjectDependencyEnum
- Extension Methods
Fields
[EnumStringRepresentation("Binding")] Binding = 3
Use for the reference fields of dedicated binding classes (classes that only represent relationships between other classes). Binding references are required. If the referenced object is deleted, the system automatically deletes the entire binding record.
[EnumStringRepresentation("NotRequired")] NotRequired = 2
Represents an optional reference. Use for objects that make sense without having the reference set. The reference column must support null values.
[EnumStringRepresentation("Required")] Required = 0
Required reference without a default value. For objects that do not make sense without having the reference set. If the referenced object is deleted, the system automatically deletes the entire object containing the reference. If the target object does not exist during import, the operation is cancelled for the given object.
[EnumStringRepresentation("RequiredHasDefault")] RequiredHasDefault = 1
To set the default object, override the GetDefaultObject() method in the code of the given Info class.
Remarks
Use for the value of the 'required' parameter when creating ObjectDependency or ExtraColumn objects within type information definitions.