MonoSoftware.MonoX.DAL.EntityClasses.SnNoteEntity.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._snEvents != null);
            toReturn |=(this._snRelationships != null);
            return toReturn ? true : base.HasPopulatedMemberEntityCollections();
        }