我正在尝试从C#datatable构建JSON输出。单个数据表也包含父级和子级。我想使用LINQ来设置JSON数据,但是我想避免创建类,因为我有很多这样的需求,并且为每个类创建类将是一个负担。
代码
var obj = dt.AsEnumerable()
.GroupBy(r => r["Head"])
.ToDictionary(g => g.Key.ToString(),
g => g.Select(r => new {
item = r["Item"].ToString(),
quantity = (int)r["Quantity"]
})
.ToArray());
var json = JsonConvert.SerializeObject(obj);
上面的代码提供了以下输出,
{
Sports : [
{item: 'Porsche 911', quantity: 100},
{item: 'Porsche 912', quantity: 200}
],
Luxury : [
{item: 'BMW 3 Series', quantity: 300}
],
Small :[
{item: 'Toyota Corolla', quantity: 400},
{item: 'Mitsubishi Lancer', quantity: 500},
{item: 'Mitsubishi Lancer 2', quantity: 600}
]}
但我想要以下输出
[
{
Head: 'Sports',
total: 300,
data : [
{item: 'Porsche 911', quantity: 100},
{item: 'Porsche 912', quantity: 200}
]
},
{
Head: 'Luxury',
total: 300,
data : [
{item: 'BMW 3 Series', quantity: 300}
]
},
{
Head: 'Small',
total: 1500,
data :[
{item: 'Toyota Corolla', quantity: 400},
{item: 'Mitsubishi Lancer', quantity: 500},
{item: 'Mitsubishi Lancer 2', quantity: 600}
]
}
]
这篇文章是Datatable with Parent and Child to JSON format的副本。我希望数据格式不同。
答案 0 :(得分:1)
可以这样写:
var obj = dt.AsEnumerable()
.GroupBy(r => r["Head"])
.Select(g => new
{
Head = g.Key.ToString(),
total = g.Sum(x => (int)x["Quantity"]),
data = g.Select(r => new
{
item = r["Item"].ToString(),
quantity = (int)r["Quantity"]
}).ToArray()
})
.ToList();
var json = JsonConvert.SerializeObject(obj);