MonoSoftware.MonoX.DAL.EntityClasses.AspnetPersonalizationAllUsersEntity.GetRelationInfoAspnetPaths C# (CSharp) Method

GetRelationInfoAspnetPaths() public method

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