MonoSoftware.MonoX.DAL.EntityClasses.SnDiscussionMessageEntity.GetDependingRelatedEntities C# (CSharp) Method

GetDependingRelatedEntities() protected method

Gets a collection of related entities referenced by this entity which depend on this entity (this entity is the PK side of their FK fields). These entities will have to be persisted after this entity during a recursive save.
protected GetDependingRelatedEntities ( ) : List
return List
        protected override List<IEntity2> GetDependingRelatedEntities()
        {
            List<IEntity2> toReturn = new List<IEntity2>();
            return toReturn;
        }