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

HasPopulatedMemberEntityCollections() protected method

Determines whether the entity has populated member collections
protected HasPopulatedMemberEntityCollections ( ) : bool
return bool
        protected override bool HasPopulatedMemberEntityCollections()
        {
            bool toReturn = false;
            toReturn |=(this._snComments != null);
            toReturn |=(this._snFiles != null);
            toReturn |=(this._snRatings != null);
            toReturn |=(this._snSubscribers != null);
            toReturn |=(this._snTags != null);
            return toReturn ? true : base.HasPopulatedMemberEntityCollections();
        }
SnRelationshipEntity