MonoSoftware.MonoX.DAL.EntityClasses.PrivacyLevelEntity.GetRelationInfoSnNotes C# (CSharp) Méthode

GetRelationInfoSnNotes() public méthode

Creates a new IRelationPredicateBucket object which contains the predicate expression and relation collection to fetch the related entities of type 'SnNote' to this entity.
public GetRelationInfoSnNotes ( ) : IRelationPredicateBucket
Résultat IRelationPredicateBucket
        public virtual IRelationPredicateBucket GetRelationInfoSnNotes()
        {
            IRelationPredicateBucket bucket = new RelationPredicateBucket();
            bucket.PredicateExpression.Add(new FieldCompareValuePredicate(SnNoteFields.PrivacyLevelId, null, ComparisonOperator.Equal, this.Id));
            return bucket;
        }