XML LINQ:如何选择多个项目?

发布于 2024-12-09 03:41:10 字数 264 浏览 1 评论 0原文

这是我的简化 XML 条目:

<Product>  
<Name>Red Chair</Name>  
<Price>29.5</Price> 
</Product> 

我像这样选择名称元素:

select catalogItem.Element("Name").Value

如何同时选择名称和价格?谢谢。

Here's my simplified XML entry:

<Product>  
<Name>Red Chair</Name>  
<Price>29.5</Price> 
</Product> 

I select the Name element like this:

select catalogItem.Element("Name").Value

How do I select both the Name and the Price? Thanks.

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

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

发布评论

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

评论(1

无力看清 2024-12-16 03:41:10
    from item in xDoc.Descendants("Product")  
    select new 
        { 
          Name = item.Element("Name").Value,
          price = item.Element("Price").Value
        };
    from item in xDoc.Descendants("Product")  
    select new 
        { 
          Name = item.Element("Name").Value,
          price = item.Element("Price").Value
        };
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文