Пример #1
0
        private int GetMethodology(string content, long projId)
        {
            var methodology = new ProjectMethodology()
            {
                created_at  = DateTime.Now,
                modified_at = DateTime.Now,
                content     = content,
                proj_id     = (int)projId
            };

            _insendluEntities.ProjectMethodologies.Add(methodology);

            try
            {
                _insendluEntities.SaveChanges();
            }
            catch (DbEntityValidationException ex)
            {
                // Retrieve the error messages as a list of strings.
                var errorMessages = ex.EntityValidationErrors
                                    .SelectMany(x => x.ValidationErrors)
                                    .Select(x => x.ErrorMessage);

                // Join the list to a single string.
                var fullErrorMessage = string.Join("; ", errorMessages);

                // Combine the original exception message with the new one.
                var exceptionMessage = string.Concat(ex.Message, " The validation errors are: ", fullErrorMessage);

                // Throw a new DbEntityValidationException with the improved exception message.
                throw new DbEntityValidationException(exceptionMessage, ex.EntityValidationErrors);
            }
            return((int)methodology.id);
        }
Пример #2
0
        private void UpdateProjectMethodology(string methodol, ProjectMethodology methodology, DateTime date)
        {
            methodology.content     = methodol;
            methodology.modified_at = date;

            _insendluEntities.Entry(methodology).State = System.Data.Entity.EntityState.Modified;
            _insendluEntities.SaveChanges();
        }
Пример #3
0
        private int GetMethodology(string content, long projId)
        {
            var methodology = new ProjectMethodology
            {
                created_at  = DateTime.Now,
                modified_at = DateTime.Now,
                content     = content,
                proj_id     = (int)projId
            };

            _insendluEntities.ProjectMethodologies.Add(methodology);
            TryCatch();

            return((int)methodology.id);
        }