MonoSoftware.MonoX.DAL.EntityClasses.SnRelationshipEntity.GetRelationInfoListItem C# (CSharp) Method

GetRelationInfoListItem() public method

Creates a new IRelationPredicateBucket object which contains the predicate expression and relation collection to fetch the related entity of type 'ListItem' to this entity.
public GetRelationInfoListItem ( ) : IRelationPredicateBucket
return IRelationPredicateBucket
        public virtual IRelationPredicateBucket GetRelationInfoListItem()
        {
            IRelationPredicateBucket bucket = new RelationPredicateBucket();
            bucket.PredicateExpression.Add(new FieldCompareValuePredicate(ListItemFields.Id, null, ComparisonOperator.Equal, this.ListItemId));
            return bucket;
        }
SnRelationshipEntity