MonoSoftware.MonoX.DAL.EntityClasses.AdEntity.GetRelationInfoAdPage C# (CSharp) Méthode

GetRelationInfoAdPage() public méthode

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