这是我的Xml。
<SCat>
<S SId="1" SName="M" FName="MA">
<Cat>
<C CId="2" CName="CAS" FName="c-a" />
<C CId="3" CName="DAC" FName="d-a" />
</Cat>
</S>
<S SId="2" SName="I" FName="IA">
<Cat>
<C CId="2" CName="CAS" FName="c-a" />
<C CId="3" CName="DAC" FName="d-a" />
</Cat>
</S>
<S SId="3" SName="D" FName="DA">
<Cat>
<C CId="2" CName="CAS" FName="c-a" />
<C CId="3" CName="DAC" FName="d-a" />
</Cat>
</S>
</SCat>
我写了这段代码。
int Scode = 1;
dsS = new DataSet();
dsS.ReadXml(HttpContext.Current.Server.MapPath(Path));
这是我被困的地方。 我希望在Datatable中获得属性“SId”= 1的所有“Cat”。
由于
答案 0 :(得分:0)
使用以下XPATH,您将获得SId ='1'
/SCat/S[@SId='1']/Cat
答案 1 :(得分:0)
您应该使用XmlDocument对象加载整个文档,然后提供节点路径和属性选择器。这些都在MSDN(link1)中有详细记录。以下是该网站的代码段:
清单1。
using System;
using System.IO;
using System.Xml;
public class Sample {
public static void Main() {
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"</book>");
XmlNode root = doc.FirstChild;
//Create a new attribute.
string ns = root.GetNamespaceOfPrefix("bk");
XmlNode attr = doc.CreateNode(XmlNodeType.Attribute, "genre", ns);
attr.Value = "novel";
//Add the attribute to the document.
root.Attributes.SetNamedItem(attr);
Console.WriteLine("Display the modified XML...");
doc.Save(Console.Out);
}
}
清单2(link2)
XElement root = XElement.Load("PurchaseOrder.xml");
IEnumerable<XElement> address =
from el in root.Elements("Address")
where (string)el.Attribute("Type") == "Billing"
select el;
foreach (XElement el in address)
Console.WriteLine(el);
希望这会有所帮助。此致,AB