MonoSoftware.MonoX.DAL.EntityClasses.SnNoteEntity.GetDependingRelatedEntities C# (CSharp) Méthode

GetDependingRelatedEntities() protected méthode

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