MonoSoftware.MonoX.DAL.EntityClasses.SnRelationshipEntity.GetRelationInfoSnRatings C# (CSharp) 메소드

GetRelationInfoSnRatings() 공개 메소드

Creates a new IRelationPredicateBucket object which contains the predicate expression and relation collection to fetch the related entities of type 'SnRating' to this entity.
public GetRelationInfoSnRatings ( ) : IRelationPredicateBucket
리턴 IRelationPredicateBucket
        public virtual IRelationPredicateBucket GetRelationInfoSnRatings()
        {
            IRelationPredicateBucket bucket = new RelationPredicateBucket();
            bucket.PredicateExpression.Add(new FieldCompareValuePredicate(SnRatingFields.RelationshipId, null, ComparisonOperator.Equal, this.Id));
            return bucket;
        }
SnRelationshipEntity