/// <summary>
        /// Dependent type names of this entity
        /// </summary>
        public void DeleteChildren(DatabaseEntities dbContext)
        {
            foreach (var x in MatchmakerOrganizationTaxonomyBranches.ToList())
            {
                x.DeleteFull(dbContext);
            }

            foreach (var x in PersonStewardTaxonomyBranches.ToList())
            {
                x.DeleteFull(dbContext);
            }

            foreach (var x in TaxonomyLeafs.ToList())
            {
                x.DeleteFull(dbContext);
            }
        }
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (MatchmakerOrganizationTaxonomyBranches.Any())
            {
                dependentObjects.Add(typeof(MatchmakerOrganizationTaxonomyBranch).Name);
            }

            if (PersonStewardTaxonomyBranches.Any())
            {
                dependentObjects.Add(typeof(PersonStewardTaxonomyBranch).Name);
            }

            if (TaxonomyLeafs.Any())
            {
                dependentObjects.Add(typeof(TaxonomyLeaf).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Exemple #3
0
 public List <IGrouping <PerformanceMeasure, TaxonomyLeafPerformanceMeasure> > GetTaxonomyTierPerformanceMeasures()
 {
     return(TaxonomyLeafs.SelectMany(x => x.TaxonomyLeafPerformanceMeasures).GroupBy(y => y.PerformanceMeasure).ToList());
 }
 /// <summary>
 /// Does this object have any dependent objects? (If it does have dependent objects, these would need to be deleted before this object could be deleted.)
 /// </summary>
 /// <returns></returns>
 public bool HasDependentObjects()
 {
     return(MatchmakerOrganizationTaxonomyBranches.Any() || PersonStewardTaxonomyBranches.Any() || TaxonomyLeafs.Any());
 }