Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

9 Answers

up vote 69 down vote accepted
foreach (ModelState modelState in ViewData.ModelState.Values) {
    foreach (ModelError error in modelState.Errors) {
        DoSomethingWith(error);
    }
}

See also http://stackoverflow.com/questions/573302/how-do-i-get-the-collection-of-model-state-errors-in-asp-net-mvc.

share|improve this answer

Using LINQ:

var allErrors = ModelState.Values.SelectMany(v => v.Errors);

allErrors is of type IEnumerable<ModelError>

share|improve this answer
2  
Way better, thank you :-) – VdesmedT May 18 '11 at 16:25
1  
Great solution! I'm in love with SelectMany now – Gervasio Marchand Apr 10 '12 at 18:52

Building on Toto's answer, if you want to join all the error messages into one string:

string messages = string.Join("; ", ModelState.Values
                                        .SelectMany(x => x.Errors)
                                        .Select(x => x.ErrorMessage));
share|improve this answer
1  
The other option is to do the following: ModelState.Values.SelectMany(x => x.Errors).Select(x => x.ErrorMessage).JoinString("; "); – Tod Thomson Feb 15 at 2:06
@Tod, is IEnumerable.JoinString() your own extension method? See stackoverflow.com/q/4382034/188926 – Dunc Feb 15 at 9:32
Hey Dunc - yes I suspect I have added that extension method to my code base and have forgotten about it and then thought it was a framework method LOL :( – Tod Thomson Feb 17 at 4:55

I was able to do this using a little LINQ,

public static List<string> GetErrorListFromModelState(ModelStateDictionary modelState)
{
      var query = from state in modelState.Values
                  from error in state.Errors
                  select error.ErrorMessage;

      var errorList = query.ToList();
      return errorList;
}

The above method returns a list of validation errors.

Further Reading :

How to read all errors from ModelState in ASP.NET MVC

share|improve this answer
+1 for being more useful during debugging since it's an extension method – Simon_Weaver Dec 15 '12 at 2:46

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.

String messages = String.Join(Environment.NewLine, ModelState.Values.SelectMany(v => v.Errors)
                                                           .Select( v => v.ErrorMessage + " " + v.Exception));

or as an extension method

public static IEnumerable<String> GetErrors(this ModelStateDictionary modelState)
{
      return modelState.Values.SelectMany(v => v.Errors)
                              .Select( v => v.ErrorMessage + " " + v.Exception).ToList();

}
share|improve this answer

And this works too:

var query = from state in ModelState.Values
    from error in state.Errors
    select error.ErrorMessage;
var errors = query.ToArray(); // ToList() and so on...
share|improve this answer
this is the best answer, dont know why got downvoted +1 ! – Yasser Nov 30 '12 at 7:58

In addition, ModelState.Values.ErrorMessage may be empty, but ModelState.Values.Exception.Message may indicate an error.

share|improve this answer

During debugging I find it useful to put a table at the bottom of each of my pages to show all modelstate errors.

<table class="model-state">
    @foreach (var item in ViewContext.ViewData.ModelState) 
    {
        if (item.Value.Errors.Any())
        { 
        <tr>
            <td><b>@item.Key</b></td>
            <td>@((item.Value == null || item.Value.Value == null) ? "<null>" : item.Value.Value.RawValue)</td>
            <td>@(string.Join("; ", item.Value.Errors.Select(x => x.ErrorMessage)))</td>
        </tr>
        }
    }
</table>

<style>

    table.model-state
    {
        border-color: #600;
        border-width: 0 0 1px 1px;
        border-style: solid;
        border-collapse: collapse;
        font-size: .8em;
        font-family: arial;
    }

    table.model-state td
    {
        border-color: #600;
        border-width: 1px 1px 0 0;
        border-style: solid;
        margin: 0;
        padding: .25em .75em;
        background-color: #FFC;
    }
</table>
share|improve this answer
if there's any edge cases here where this fails please just edit the answer to fix it – Simon_Weaver Dec 15 '12 at 2:42

Useful for passing array of error messages to View, perhaps via Json:

messageArray = this.ViewData.ModelState.Values.SelectMany(modelState => modelState.Errors, (modelState, error) => error.ErrorMessage).ToArray();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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