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

GetRelationInfoCalendarEvent() public method

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