接近我正在寻找的解决方案是这个线程 如何使用 linq 表达式展平嵌套对象
但是尝试这种方法时出现错误
方法"System.Linq.Enumerable.SelectMany(System.Collections.Generic.IEnumerable, System.Func>)"的类型参数无法从用法中推断出来。尝试显式指定类型参数。
我的代码:
var aa = t.data.SelectMany(x =>
x.Value.innerData.SelectMany(y => new { /*Error at this SelectMany*/
url = x.Key,
disp = x.Value.disp,
date = y.Key,
count = y.Value.count,
rank = y.Value.rank,
}));
我的课程:
public class TData {
public Dictionary<string, TDetail> data { get; set; }
}
public class TDetail {
public string disp { get; set; }
[Newtonsoft.Json.JsonProperty("data")]
public Dictionary<string, Metrics> innerData { get; set; }
}
public class Metrics {
public string count { get; set; }
public string rank { get; set; }
}
我从第三方 API 获得的 JSON 如下所示:
{
"data": {
"abc.com": {
"disp": "#712176",
"data": {
"2015-02-08": {
"count": 4,
"rank": 5.8
},
"2015-02-23": {
"count": 3,
"rank": 8.3
},
"2015-03-14": {
"count": 5,
"rank": 3.7
}
}
},
"nbc.com": {
"disp": "#822176",
"data": {
"2015-02-08": {
"count": 3,
"rank": 5.5
},
"2015-02-23": {
"count": 5,
"rank": 8.4
},
"2015-03-14": {
"count": 7,
"rank": 4.7
}
}
}
}
}
在这种情况下,如何显式指定类型参数?谢谢。
太多SelectMany
:
var t = new TData(); // your TData
var aa = t.data.SelectMany(x =>
x.Value.innerData.Select(y => new
{
url = x.Key,
disp = x.Value.disp,
date = y.Key,
count = y.Value.count,
rank = y.Value.rank,
}));
内在的必须是Select
.
SelectMany
将每个单独的项目投影到一系列项目中(然后将其展平)。 您的外部SelectMany
是将每个项目投影到一个序列中,但您的内在SelectMany
是将每个项目投影到不是序列的单个项目中。 如果要将序列中的每个项目投影到单个项目中,则需要使用 Select
,而不是 SelectMany
。