0

这是我的 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));

这就是我被困的地方。我想在具有属性“SId”= 1 的数据表中获取所有“猫”。

谢谢

4

2 回答 2

0

使用下面的 XPATH,您将获得所有子节点SId ='1'

/SCat/S[@SId='1']/Cat
于 2013-05-08T04:42:40.503 回答
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(链接2 )

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

于 2013-05-08T04:49:34.883 回答