I want to get all the error messages out of the modelState without knowing the key values. Like I just want to do a for loop and and grab all the error messages that the ModelState has.
How can I do this?
Thanks
|
I want to get all the error messages out of the modelState without knowing the key values. Like I just want to do a for loop and and grab all the error messages that the ModelState has. How can I do this? Thanks |
|||
|
|
|
|||
|
|
|
Using LINQ:
|
|||||||||
|
|
Building on Toto's answer, if you want to join all the error messages into one string:
|
|||||||||
|
|
I was able to do this using a little LINQ,
The above method returns a list of validation errors. Further Reading : |
|||
|
|
As I discovered having followed the advice in the answers given so far, you can get exceptions occuring without error messages being set, so to catch all problems you really need to get both the ErrorMessage and the Exception.
or as an extension method
|
|||
|
|
|
And this works too:
|
|||
|
|
|
In addition, ModelState.Values.ErrorMessage may be empty, but ModelState.Values.Exception.Message may indicate an error. |
|||
|
|
|
During debugging I find it useful to put a table at the bottom of each of my pages to show all modelstate errors.
|
|||
|
|
Useful for passing array of error messages to View, perhaps via Json:
|
|||
|
|