使用c#, LINQ从xml字符串读取子节点

本文关键字:字符串 读取 子节点 xml LINQ 使用 | 更新日期: 2023-09-27 18:10:34

- <entry xml:base="http://testserver.windows.net/" xmlns="http://www.w3.org/2005/Atom" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" m:etag="W/"datetime'2015-08-30T00%3A04%3A02.9193525Z'"">
  <id>http://testserver.windows.net/Players(PartitionKey='zzz',RowKey='000125')</id> 
  <category term="testServer.Players" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" /> 
  <link rel="edit" title="Players" href="Players(PartitionKey='zzz',RowKey='000125')" /> 
  <title /> 
  <updated>2014-04-30T00:53:42Z</updated> 
- <author>
  <name /> 
  </author>
- <content type="application/xml">
- <m:properties>
  <d:PartitionKey>zzz</d:PartitionKey> 
  <d:RowKey>000125</d:RowKey> 
  <d:Timestamp m:type="Edm.DateTime">2014-04-30T00:04:02.9193525Z</d:Timestamp> 
  <d:Name>Black color</d:Name> 
  <d:Comments>Test comments</d:Comments> 
  </m:properties>
  </content>
  </entry>

如何使用c#或LINQ读取"m:properties"的后代?这个xml字符串存储在XElement

使用c#, LINQ从xml字符串读取子节点

类型的变量中。

您可以使用XNamespace + "element local name"的组合来引用名称空间中的元素,例如:

XElement myxelement = XElement.Parse("your XML string here");
XNamespace m = "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata";
List<XElement> properties = myxelement.Descendants(m+"properties").ToList();

我想这可以告诉你如何使用Linq来处理XML

使用c#从XML结构中读取数据

如果其他任何地方出现问题,只需稍微调试一下,看看从L2X操作中得到什么,然后在数据树中再深入一步。

Using Linq2XML

var xDoc = XDocument.Load(filename);
var dict = xDoc.Descendants("m:properties")
           .First()
           .Attributes()
           .ToDictionary(x => x.Name, x => x.Value);
  1. 设置命名空间管理器。请注意,.net库不支持默认命名空间,所以我在默认命名空间中添加了前缀"ns"。

  2. 使用xpath或linq查询xml。下面的示例使用xpath:

                XmlNamespaceManager NamespaceManager = new XmlNamespaceManager(new NameTable());
            NamespaceManager.AddNamespace("base", "http://testserver.windows.net/");
            NamespaceManager.AddNamespace("d", "http://schemas.microsoft.com/ado/2007/08/dataservices");
            NamespaceManager.AddNamespace("m", "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata");
            NamespaceManager.AddNamespace("ns", "http://www.w3.org/2005/Atom"); XDocument doc = XDocument.Parse(XElement);
        var properties = doc.XPathSelectElement("/ns:entry/ns:content/m:properties", NamespaceManager);