我的XML文件示例如下: -
<table>
<columns>
<column>
<area>
<identifier>E31000040</identifier>
<label>Gtr Manchester Fire</label>
<altLabel>Gtr Manchester Fire</altLabel>
<isSummary>false</isSummary>
</area>
<metricType>
<identifier>948</identifier>
<label>Accidental dwelling fires</label>
<altLabel>Accidental dwelling fires</altLabel>
<isSummary>false</isSummary>
</metricType>
<period>
<identifier>fq_Q1_2007_08</identifier>
<label>2007/08 Q1</label>
<altLabel>2007/08 Q1</altLabel>
<isSummary>false</isSummary>
</period>
<valueType>
<identifier>raw</identifier>
<label>Raw value</label>
<isSummary>false</isSummary>
</valueType>
</column>
<column>
<area>
<identifier>E31000040</identifier>
<label>Gtr Manchester Fire</label>
<altLabel>Gtr Manchester Fire</altLabel>
<isSummary>false</isSummary>
</area>
<metricType>
<identifier>948</identifier>
<label>Accidental dwelling fires</label>
<altLabel>Accidental dwelling fires</altLabel>
<isSummary>false</isSummary>
</metricType>
<period>
<identifier>fq_Q2_2007_08</identifier>
<label>2007/08 Q2</label>
<altLabel>2007/08 Q2</altLabel>
<isSummary>false</isSummary>
</period>
<valueType>
<identifier>raw</identifier>
<label>Raw value</label>
<isSummary>false</isSummary>
</valueType>
</column>
<rows>
<row>
<values>
<value>
<source>732.0</source>
<value>732.0</value>
<formatted>732</formatted>
<format>#,##0</format>
<publicationStatus>Published</publicationStatus>
</value>
<value>
<source>659.0</source>
<value>659.0</value>
<formatted>659</formatted>
<format>#,##0</format>
<publicationStatus>Published</publicationStatus>
</value>
</values>
</row>
</rows>
</table>
首先,我想添加一个网格,并最终保存到一个sql数据库,每个列周期/标签,沿着相应的值。 我尝试了以下代码的各种变体,所有这些变体都与时间段不匹配。
XDocument xd = XDocument.Load(xml);
List<Results> period = new List<Results>();
var columnnodes = xd.Element("table")
.Elements("columns")
.Elements("column")
.Elements("period");
var rownodes = xd.Element("table")
.Elements("rows")
.Elements("row")
.Elements("values")
.Elements("value");
foreach (XElement ele in columnnodes)
{
Results newResult = new Results();
newResult.period = (string)ele.Element("label");
/*newResult.value = (int)xd.Element("table")
.Elements("rows")
.Elements("row")
.Elements("values")
.Elements("value")
.Elements("Formatted");
period.Add(newResult);*/
foreach (XElement ele2 in rownodes)
{
newResult.value = (int)ele2.Element("formatted");
}
period.Add(newResult);
}
gridResults.DataSource = period;
gridResults.DataBind();
有关如何使它们与数据网格对齐的任何线索,类似于: -
答案 0 :(得分:2)
您可以在两个单独的列表中简单地提取句点和值:
var periods = from p in xmlDoc.Descendants("period")
select p.Element("label").Value;
var values = from v in xmlDoc.Descendants("formatted")
select v.Value;
然后只是.Zip
他们在一起:
var results = periods.Zip(values, (p, v) => new { Period = p, Value = v });
生成所需的结果集:
[0] = { Period = "2007/08 Q1", Value = "732" }
[1] = { Period = "2007/08 Q2", Value = "659" }
答案 1 :(得分:1)
我发现您的XML文件有两个问题,第一个<columns>
标记未关闭,必须在两个column
元素之后,第二个重要的标记在您的value
树中有一个value
元素(你想要获取),这肯定会产生问题,因为如果你要查找value
的后代,那么这个项目也将被考虑,这将导致意想不到的结果。
因此,我已使用列名amount
替换您的内部元素,您可以为其指定任何有意义的名称并相应地更改查询: -
var period = xdoc.Descendants("period")
.Select((x,index) => new
{
Period = (string)x.Element("label"),
Value = x.Document.Root.Descendants("value")
.Where((v,i) => i == index)
.Select(z => (string)z.Element("amount")).FirstOrDefault()
});
正如您所看到的,我正在获取期间&amp; 值出现在columns
&amp;中的相同索引处rows
树分别。