NetForumSubEntityCollectionAttributeCustomParentRelationship Property

A filter used to define a custom relationship between this parent entity and these sub-entities.

Definition

Namespace: Ignition.Framework.Entities
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
public string CustomParentRelationship { get; set; }

Property Value

String

Remarks

Specifying this filter makes this collection ineligible for preloading. This filter should be in the following format:
C#
xxx_child_field={yyy_parent_field}
, including braces around the parent field name only. The field yyy_parent_field must either: (1) Be bound somewhere on the parent entity by way of a NetForumFieldAttribute, or (2) Be {Id} in which case the entity's primary key will be used. Multiple criteria may be strung together with and and or. If specified this filter is used instead of the "default" filter, which normally compares the Id property of the parent entity to the sub-entity property marked with ParentEntityIdAttribute.

See Also