我有xml如下:
<Reports>
<report>
<name>By Book</name>
<report_type>book</report_type>
<Object>Count Change</Object>
<Slicers detail="detail">
<Namespace>EOD</Namespace>
<BookNode>HighLevel</BookNode>
<DateFrom>T-2</DateFrom>
<DateTo>T-1</DateTo>
<System>NewSystem</System>
</Slicers>
</report>
</Reports>
我只想循环遍历Xdocument的每个元素的值(pref将是Slicers下的任何元素),但是只从所有元素开始。
当我运行以下内容时:
var slicers = from c in config.Elements("Reports")
select c.Value ;
foreach (var xe in slicers)
{
Console.WriteLine(xe);
}
输出是将所有值连接在一起的单行。
“通过BookbookCount ChangeEODHighLevelT-2T-1NewSystem”
我想一次一个地循环使用它们,首先是“按书”,然后运行一些代码然后预订等等。
我确信这很简单,但无法绕过它。我已经尝试了foreach(查询中的Xelement)但是同样的结果
答案 0 :(得分:-1)
我会做这样的事情;
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
//load in your xml here
XmlNodeList xnList = doc.SelectNodes("nodeYou'reLookingFor");
//for getting just the splicers you could do "Reports/report/Slicers"
foreach (XmlNode node in xnList)
string namespace = node["Namespace"].InnerText;
//go through all your nodes here
您正在创建一个xmldoc,将xml加载到其中,创建一个列表,该列表保存列表中的每个节点(在指定的Xpath处),然后循环遍历每个节点。在循环中,您可以通过引用
执行任何操作 node["nodenamehere"].InnerText