Пример #1
0
 /// <summary>
 /// Dependent type names of this entity
 /// </summary>
 public void DeleteChildren(DatabaseEntities dbContext)
 {
     foreach (var x in TaxonomyBranches.ToList())
     {
         x.DeleteFull(dbContext);
     }
 }
Пример #2
0
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (TaxonomyBranches.Any())
            {
                dependentObjects.Add(typeof(TaxonomyBranch).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Пример #3
0
        /// <summary>
        /// Dependent type names of this entity
        /// </summary>
        public void DeleteChildren(DatabaseEntities dbContext)
        {
            foreach (var x in AttachmentTypeTaxonomyTrunks.ToList())
            {
                x.DeleteFull(dbContext);
            }

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

            foreach (var x in TaxonomyBranches.ToList())
            {
                x.DeleteFull(dbContext);
            }
        }
Пример #4
0
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (AttachmentTypeTaxonomyTrunks.Any())
            {
                dependentObjects.Add(typeof(AttachmentTypeTaxonomyTrunk).Name);
            }

            if (MatchmakerOrganizationTaxonomyTrunks.Any())
            {
                dependentObjects.Add(typeof(MatchmakerOrganizationTaxonomyTrunk).Name);
            }

            if (TaxonomyBranches.Any())
            {
                dependentObjects.Add(typeof(TaxonomyBranch).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Пример #5
0
 public List <TaxonomyLeaf> GetTaxonomyLeafs()
 {
     return(TaxonomyBranches.SelectMany(x => x.TaxonomyLeafs).OrderBy(x => x.TaxonomyLeafName).ToList());
 }
Пример #6
0
 /// <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(TaxonomyBranches.Any());
 }
Пример #7
0
 /// <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(AttachmentTypeTaxonomyTrunks.Any() || MatchmakerOrganizationTaxonomyTrunks.Any() || TaxonomyBranches.Any());
 }