使用 linq to xml 检索 xml 节点
<book>
<writer>jhon</writer>
<descr>
<title>linq</title>
<pageno>120</pageno>
</descr>
<descr>
<title>linq1</title>
<pageno>120</pageno>
</descr>
</book>
的形式检索数据
我想以作者和标题jhon linq
jhona linq1
<book>
<writer>jhon</writer>
<descr>
<title>linq</title>
<pageno>120</pageno>
</descr>
<descr>
<title>linq1</title>
<pageno>120</pageno>
</descr>
</book>
i want to retrieve data in the form of writer and title
jhon linq
jhona linq1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
--假设您想要 writer 标签中的“值”等 --
*您的意思是让 xml 为:
查询将类似于(可能的解决方案)
然后您可以连接 writer 和title 获取您指定的输出格式(作者标题)
--Assuming that you want the "value" in the writer tag and so on---
*Did you mean to have the xml to be:
The query will be something like(possible solution)
And then you could concatenate the writer and the title to get the output format you specified(author title)