MonoSoftware.MonoX.DAL.EntityClasses.CalendarEventRecurringDefinitionTypeEntity.GetRelationInfoCalendarEventRecurringDefinitions C# (CSharp) Method

GetRelationInfoCalendarEventRecurringDefinitions() public method

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