So I have a view called index that lays out all of the threads in my database. Then inside that view I\'m loading all the comments on the threads. When I call on my form tha
Use the code below to iterate through the errors. Then you can see what field and what object is failing on validation. And then you can go from there. Just looking at the IsValid property is not going to give enough information.
var errors = ModelState.Values.SelectMany(v => v.Errors);
And then loop through the errors.