MonoSoftware.MonoX.DAL.EntityClasses.SnDiscussionMessageEntity.GetDependingRelatedEntities C# (CSharp) 메소드

GetDependingRelatedEntities() 보호된 메소드

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
리턴 List
        protected override List<IEntity2> GetDependingRelatedEntities()
        {
            List<IEntity2> toReturn = new List<IEntity2>();
            return toReturn;
        }