Linq 到 XML 问题

发布于 2024-10-30 14:10:40 字数 589 浏览 1 评论 0原文

给定以下 XML,我可以使用什么查询将 preapprovalKey 的值提取到字符串变量?对于 LINQ to XML 还是有点陌生​​。

  <?xml version="1.0" encoding="UTF-8" ?> 
- <ns2:PreapprovalResponse xmlns:ns2="http://svcs.paypal.com/types/ap">
- <responseEnvelope>
  <timestamp>2011-04-05T18:35:32.952-07:00</timestamp> 
  <ack>Success</ack> 
  <correlationId>7cec030fa3eb2</correlationId> 
  <build>1655692</build> 
  </responseEnvelope>
  <preapprovalKey>PA-9AG427954Y7578617</preapprovalKey> 
  </ns2:PreapprovalResponse>

Given the following XML, what query can I use to extract the value of preapprovalKey to a string variable? Still a little new to LINQ to XML.

  <?xml version="1.0" encoding="UTF-8" ?> 
- <ns2:PreapprovalResponse xmlns:ns2="http://svcs.paypal.com/types/ap">
- <responseEnvelope>
  <timestamp>2011-04-05T18:35:32.952-07:00</timestamp> 
  <ack>Success</ack> 
  <correlationId>7cec030fa3eb2</correlationId> 
  <build>1655692</build> 
  </responseEnvelope>
  <preapprovalKey>PA-9AG427954Y7578617</preapprovalKey> 
  </ns2:PreapprovalResponse>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

上课铃就是安魂曲 2024-11-06 14:10:40
XDocument doc = XDocument.Load("test.xml");
string preapprovalKey = doc.Descendants("preapprovalKey").Single().Value;
XDocument doc = XDocument.Load("test.xml");
string preapprovalKey = doc.Descendants("preapprovalKey").Single().Value;
请止步禁区 2024-11-06 14:10:40

请参阅下面我的示例,它可以帮助您解决您的问题和问题。 :)

考虑下面的 XML 作为 SQL 表的列之一。

<Root>
<Name>Dinesh</Name>
<Id>2</Id>
</Root>

查询的目的是从 XML 中获取名称。在此示例中,我们将获取“Dinesh”作为值。

   var Query = (from t in dbContext.Employee.AsEnumerable()
    where t.active == true 
    select new Employee
    {
    Id = t.AtpEventId,  
    Name = XDocument.Parse(t.Content).Descendants("Root").Descendants("Name").ToList().  
    Select(node => node.Value.ToString()).FirstOrDefault()  
    });

请注意以下几点:-

  1. 在上面的 LINQ 中,t.active == true 只是一个示例,用于在需要时设置一些条件。

  2. 请注意,在上面的 LInQ 查询中,始终使用 AsEnumerable(),就像我在
    中所做的那样
    Linq query.exmaple(var Query = (from t in dbContext.Employee.AsEnumerable()) 的第一个文件

  3. Descendants("Root").Descendants("Name") ,这里 Root 应该是与 XML 匹配的元素,在 Root 下我们有 Name 元素,这就是我们编写的原因
    后代(“”).后代(“名称”)

  4. 如需进一步说明,您可以通过 [email protected]

See below my exmaple, it help you to resolve your issue and problem. :)

Consider this below XML is there as one of the SQL table's column.

<Root>
<Name>Dinesh</Name>
<Id>2</Id>
</Root>

The objective of the query is to fetch the Name from the XML. In this example we will fetch the 'Dinesh' as the value.

   var Query = (from t in dbContext.Employee.AsEnumerable()
    where t.active == true 
    select new Employee
    {
    Id = t.AtpEventId,  
    Name = XDocument.Parse(t.Content).Descendants("Root").Descendants("Name").ToList().  
    Select(node => node.Value.ToString()).FirstOrDefault()  
    });

Note the following :-

  1. Here in above LINQ , t.active == true is just an example to make some condition if needed.

  2. Please note, in the above LInQ query, always use the AsEnumerable(), as I did in the
    first file of the Linq query.exmaple(var Query = (from t in dbContext.Employee.AsEnumerable())

  3. Descendants("Root").Descendants("Name") , Here Root should be the Element matching with the XML, And under the Root we have Name element, thats why we wrote
    Descendants("Root").Descendants("Name")

  4. For any further clarification you can reach me via [email protected]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文