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

GetRelationInfoBlog() public method

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