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

GetRelationInfoSnAlbum() public method

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