コード例 #1
0
        /// <summary>
        /// Dependent type names of this entity
        /// </summary>
        public void DeleteChildren(DatabaseEntities dbContext)
        {
            foreach (var x in LoadGeneratingUnits.ToList())
            {
                x.DeleteFull(dbContext);
            }

            foreach (var x in RegionalSubbasinsWhereYouAreTheOCSurveyDownstreamCatchment.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 (LoadGeneratingUnits.Any())
            {
                dependentObjects.Add(typeof(LoadGeneratingUnit).Name);
            }

            if (RegionalSubbasinsWhereYouAreTheOCSurveyDownstreamCatchment.Any())
            {
                dependentObjects.Add(typeof(RegionalSubbasin).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
コード例 #3
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(LoadGeneratingUnits.Any() || RegionalSubbasinsWhereYouAreTheOCSurveyDownstreamCatchment.Any());
 }