I have the situation where I'm initializing my model in DatabaseInitializer() for EF 4.1 and get this annoying error "Validation failed for one or more entities. See 'EntityValidationErrors' property for more details." So, I go to this EntityValidationErrors and there is a field {System.Data.Entity.Validation.DbEntityValidationResult} which gives me no information at all about what field it was unable to initialize. Is there a way to get more info about this error?

To clear things out:

I know how to fix the string length problem. What I'm asking is how do I get the exact field name that is breaking the model.

link|improve this question

feedback

3 Answers

up vote 27 down vote accepted

You could try this in a try/catch block?

catch (DbEntityValidationException dbEx)
{
    foreach (var validationErrors in dbEx.EntityValidationErrors)
    {
        foreach (var validationError in validationErrors.ValidationErrors)
        {
            Trace.TraceInformation("Property: {0} Error: {1}", validationError.PropertyName, validationError.ErrorMessage);
        }
    }
}
link|improve this answer
exactly what I needed. thanks a lot! – Nazar Gargol Mar 24 '11 at 10:02
See my answer if you don't want to have to change any code. – GONeale Sep 29 '11 at 1:33
feedback

While you are in debug mode within the catch {...} block open up the "QuickWatch" window (ctrl+alt+q) and paste in there:

((System.Data.Entity.Validation.DbEntityValidationException)ex).EntityValidationErrors

This will allow you to drill down into the ValidationErrors tree. It's the easiest way I've found to get instant insight into these errors.

link|improve this answer
1  
This is better than the other answer :) – Doug Sep 28 '11 at 20:41
5  
If you don't have a catch block, you can replace ex with $exception and get the same result. – Ecyrb Dec 22 '11 at 18:53
feedback

Well, I had same problem. My model worked good in EF CTP5 but failed to build in 4.1 with the same error ""Validation failed for one or more entities" when I tried to initalize it. I figured out that I had property:

public string Comment {get; set;}

Then in seed method in overrided initializer, I had quite a bit long (about 600 letters) comment.

I think the point is: in EF 4.1 you have to set data annotations explicitly in some cases. For me, setting:

[StringLength(4000)] 
public string Comment {get; set;}

helped. It's weird since CTP5 had no problems with that.

link|improve this answer
Well what I was asking is how do I get exact property name that is breaking the model. Though, I managed to overcome the problem you stated using [StringLength(Int32.MaxValue)] as an attribute for my property (as it was suggested by Ladislav Mrnka and I talked about it in this question stackoverflow.com/questions/5346155/…) Powodzenia! =) – Nazar Gargol Mar 18 '11 at 23:06
This got thrown when I added a new property to my model in 4.1. Was working perfectly in 4.1 before. Weird. Solved by adding annotation to all the properties in the model. – Roberto Bonini Mar 22 '11 at 14:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.