/// <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);
            }
        }
 /// <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());
 }
Exemple #4
0
 public Fiber(GisFeatures features)
     : base(features.Attributes.Carrier)
 {
 }