我编写了以下代码以从ASP.Net MVC中的ViewData.Modelstate属性中引出异常以及引用该属性的字符串键。我认为应该可以用Linq表达式做到这一点,但它完全让我感到困惑。
var exceptions = new Dictionary<string, Exception>();
foreach (KeyValuePair<string, ModelState> propertyErrorsPair in ViewData.ModelState)
{
foreach (var error in propertyErrorsPair.Value.Errors)
{
if (error.Exception != null)
{
exceptions.Add(propertyErrorsPair.Key, error.Exception);
}
}
}
Linq有这样做的方法吗?我猜它可能与SelectMany有关,但正如我所说,我无法弄清楚如何实现这一目标。
由于
答案 0 :(得分:5)
这是等效的LINQ表达式:
var result = ViewData.ModelState.SelectMany(x => x.Value.Errors
.Where(error => error.Exception != null)
.Select(error => new KeyValuePair<string, Exception>(x.Key, error.Exception)));