Elmah和DbEntityValidationException

时间:2011-05-30 23:07:18

标签: entity-framework-4.1 elmah

我已经设置了一个包含Elmah和EF4.1 Code First的项目。

项目正在抛出System.Data.Entity.Validation.DbEntityValidationException,但Elmah没有提供足够的细节来确定哪些验证失败。所记录的全部是:

System.Data.Entity.Validation.DbEntityValidationException: Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.

有没有办法让Elmah扩展并记录EntityValidationErrors属性?

1 个答案:

答案 0 :(得分:2)

List<IUserFeedback> errors = new List<IUserFeedback>();

try
{
    _dbContext.SaveChanges();
    Updated(this, HasUnsavedChanges);
}
catch (DbEntityValidationException ex)
{
    foreach (var x in ex.EntityValidationErrors)
    {
        foreach (var y in x.ValidationErrors)
        {
            if (!String.IsNullOrWhiteSpace(y.PropertyName))
                errors.Add(new UserFeedback() {
                    FeedbackFlags = TypeOfUserFeedbackFlags.Error,
                    Message = String.Format("Unable to save {0} due to an issue with its \"{1}\" value. The error returned was \"{2}\"",x.Entry.Entity, y.PropertyName, y.ErrorMessage)
                });
            else
                errors.Add(new UserFeedback() {
                    FeedbackFlags = TypeOfUserFeedbackFlags.Error,
                    Message = String.Format("Unable to save {0} due to the error \"{1}\"", x.Entry, y.ErrorMessage)
                });
        }
    }
}

return errors;