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

GetRelationInfoPage() public method

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