I've seen developers who "exploit" ModelState.AddModelError() to add error messages to ModelState, even though the errors have nothing to do with validation of the Model of the current request.
My take is that instead, a redirect should execute an entirely seperate "Error" action and view to display the error messages. In that case, there would be a dedicated ErrorModel which is presented similarly to how @Html.ValidationSummary presents.
This leads to the question: is there an idiomatic "ErrorModel" structure others use, and/or a popular library / function that takes this model and somewhat imitates the presentation offered by ValidationSummary?
I can make my own ErrorModel and ValidationSummary code (I can even copy the MVC source code), but I'd prefer to use a library or follow a pattern that others use in this situation.