Click or drag to resize
ObjectTypeInfoDependsOn Property
List of ObjectDependency instances that define references (foreign keys) pointing to other objects that are directly visible. Allows the system to maintain referential integrity of relationships when importing or staging objects, or perform chain deleting of objects together with referenced objects. Do not include site or parent references that are specified by the SiteIDCOlumn and ParentIDColumn properties.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 10.0.0
Syntax
C#
public IEnumerable<ObjectDependency> DependsOn { get; set; }

Property Value

Type: IEnumerableObjectDependency
Remarks
For foreign keys of objects belonging to other modules not visible by this module, define the reference externally using the Extends property in the type info of the related object.
See Also