MonoSoftware.MonoX.DAL.EntityClasses.SnNoteEntity.GetMemberEntityCollections C# (CSharp) Method

GetMemberEntityCollections() protected method

Gets a list of all entity collections stored as member variables in this entity. Only 1:n related collections are returned.
protected GetMemberEntityCollections ( ) : List
return List
        protected override List<IEntityCollection2> GetMemberEntityCollections()
        {
            List<IEntityCollection2> toReturn = new List<IEntityCollection2>();
            toReturn.Add(this.SnEvents);
            toReturn.Add(this.SnRelationships);
            return toReturn;
        }