NetForumSubEntityCollectionAttributeCustomParentRelationship Property
A filter used to define a custom relationship between this parent entity and these sub-entities.
Namespace: Ignition.Framework.EntitiesAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
public string CustomParentRelationship { get; set; }
Public Property CustomParentRelationship As String
Get
Set
public:
property String^ CustomParentRelationship {
String^ get ();
void set (String^ value);
}
member CustomParentRelationship : string with get, set
Property Value
String
Specifying this filter makes this collection ineligible for preloading.
This filter should be in the following format:
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.