Im using JSON to post data from a form and ModelState.isValid() returning false, i put a WriteLine for all incoming data and everything looks fine data wise, is there a way to d
You can find the errors in the ModelState.Values collection. Every value has an Errors collection that contains all the model errors for that property.
var errors = from v in ModelState.Values
where v.Errors.Count > 0
select v.Errors;