/// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (GisFeatures.Any())
            {
                dependentObjects.Add(typeof(GisFeature).Name);
            }

            if (GisUploadAttemptGisMetadataAttributes.Any())
            {
                dependentObjects.Add(typeof(GisUploadAttemptGisMetadataAttribute).Name);
            }

            if (ProjectsWhereYouAreTheCreateGisUploadAttempt.Any())
            {
                dependentObjects.Add(typeof(Project).Name);
            }

            if (ProjectsWhereYouAreTheLastUpdateGisUploadAttempt.Any())
            {
                dependentObjects.Add(typeof(Project).Name);
            }

            if (TreatmentsWhereYouAreTheCreateGisUploadAttempt.Any())
            {
                dependentObjects.Add(typeof(Treatment).Name);
            }

            if (TreatmentsWhereYouAreTheUpdateGisUploadAttempt.Any())
            {
                dependentObjects.Add(typeof(Treatment).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
        /// <summary>
        /// Dependent type names of this entity
        /// </summary>
        public void DeleteChildren(DatabaseEntities dbContext)
        {
            foreach (var x in GisFeatures.ToList())
            {
                x.DeleteFull(dbContext);
            }

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

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

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

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

            foreach (var x in TreatmentsWhereYouAreTheUpdateGisUploadAttempt.ToList())
            {
                x.DeleteFull(dbContext);
            }
        }
Пример #3
0
        /// <summary>
        /// Dependent type names of this entity
        /// </summary>
        public void DeleteChildren(DatabaseEntities dbContext)
        {
            foreach (var x in GisFeatureMetadataAttributes.ToList())
            {
                x.DeleteFull(dbContext);
            }

            foreach (var x in GisUploadAttemptGisMetadataAttributes.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 (GisFeatureMetadataAttributes.Any())
            {
                dependentObjects.Add(typeof(GisFeatureMetadataAttribute).Name);
            }

            if (GisUploadAttemptGisMetadataAttributes.Any())
            {
                dependentObjects.Add(typeof(GisUploadAttemptGisMetadataAttribute).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Пример #5
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(GisFeatureMetadataAttributes.Any() || GisUploadAttemptGisMetadataAttributes.Any());
 }
 /// <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(GisFeatures.Any() || GisUploadAttemptGisMetadataAttributes.Any() || PeopleWhereYouAreTheCreateGisUploadAttempt.Any() || ProjectsWhereYouAreTheCreateGisUploadAttempt.Any() || ProjectsWhereYouAreTheLastUpdateGisUploadAttempt.Any() || ProjectPeopleWhereYouAreTheCreateGisUploadAttempt.Any() || TreatmentsWhereYouAreTheCreateGisUploadAttempt.Any() || TreatmentsWhereYouAreTheUpdateGisUploadAttempt.Any());
 }