gpt4 book ai didi

c# - 为什么只拿一个? Linq to XML C#

转载 作者:太空宇宙 更新时间:2023-11-03 18:19:23 26 4
gpt4 key购买 nike

我不明白为什么我的代码只采用第一个标记而不采用其余标记。

var xml = XDocument.Load(HttpContext.Current.Server.MapPath("~/App_Data/Themes.xml"));

var q = from f in xml.Descendants("themes")
select new ThemesItem
{
Name = f.Element("theme").Element("name").Value,
Description = f.Element("theme").Element("description").Value,
Author = f.Element("theme").Element("author").Value,
};

return q.ToList();

ThemeItem 只是一个带有公共(public)字符串的 get set当我写出这些数据时,我使用了中继器感谢您的帮助:)

最佳答案

这是因为 Descendants 扩展方法采用名为“themes”的 xml 节点的所有后代。由于您的主题节点是各个主题标签的容器,因此只有一个,当您在其上使用 .Element 时,您会得到第一次出现。

这段代码应该可以工作:

var q = from f in xml.Descendants("theme")
select new ThemesItem
{
Name = f.Element("name").Value,
Description = f.Element("description").Value,
Author = f.Element("author").Value,
};

关于c# - 为什么只拿一个? Linq to XML C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1323397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com