Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

MY Business service return custom rules exception with dictionary of key/value when some validation error occurred.

For such validation errors i want to handle in my MVC project and bind with ModelState so, those errors will automatically populates in the views.

But since it automatically redirect to error page when any exception occurs. Does it possible to handle error and show on same view ?

share|improve this question

1 Answer

try
{
    BusinessService.SomeOperation(model);

    return RedirectToAction("Index"); //success
}
catch(RulesException ex)
{
    foreach(var validationResult in ex.Result)
    {
          ModelState.Add(validationResult.Key, validationResult.Value)
    } //populate modelstate

    return View(model); //redisplay view with errors
}
share|improve this answer
:), Currently I have used the same way for time being, but is there any way i can bind errors to ModelState ? then things will be per MVC stranded. – codehunter Nov 15 '12 at 7:39
What do you mean in binding errors to ModelState? ModelState.Add does that I think – archil Nov 15 '12 at 7:50
yes correct, but i should be able to add it with out wrapping method call with try catch, instead i want some filter, let say exception filter do that for me automatically. – codehunter Nov 15 '12 at 11:25

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.