MonoSoftware.MonoX.DAL.EntityClasses.NewsCategoryEntity.GetRelationInfoAspnetApplications C# (CSharp) Method

GetRelationInfoAspnetApplications() public method

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