使用 LINQ to XML 构建集合 - 由于某种原因仅获取顶部项目

发布于 2024-08-12 01:40:11 字数 732 浏览 2 评论 0原文

因此,我尝试从 twitter API 解析一些 XML,由于某种原因,下面的 LINQ 查询仅返回 1 行。当我单步执行代码来查看原始 XML 时,通常会出现 20 多个项目,所以我不确定我在这里做错了什么。

对 LINQ to XML 新手有什么帮助吗?

            List<TwitterStatus> StatusCollection = new List<TwitterStatus>();
            XDocument xdoc = XDocument.Parse(xmldata);

            StatusCollection = (from status in xdoc.Descendants("statuses")
                                select new TwitterStatus
                                {
                                    Text = status.Element("status").Element("text").Value,
                                    User = status.Element("status").Element("user").Element("screen_name").Value
                                }).ToList();

So I'm trying to parse some XML from the twitter API and for some reason the LINQ query below only returns 1 row. When I step through the code to view the raw XML it's the usual 20+ items so I'm not sure what I'm doing wrong here.

Any help for a LINQ to XML newbie?

            List<TwitterStatus> StatusCollection = new List<TwitterStatus>();
            XDocument xdoc = XDocument.Parse(xmldata);

            StatusCollection = (from status in xdoc.Descendants("statuses")
                                select new TwitterStatus
                                {
                                    Text = status.Element("status").Element("text").Value,
                                    User = status.Element("status").Element("user").Element("screen_name").Value
                                }).ToList();

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

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

发布评论

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

评论(1

眼泪都笑了 2024-08-19 01:40:11

现在我不知道twitter XML的形式,但可能是元素“statuses”包含多个“status”元素。
所以 Descendants("statuses") 只能找到一个元素。
您是否不需要执行

StatusCollection = (from status in xdoc.Descendants("status") select new TwitterStatus {
Text = status.Element("text").Value,
User = status.Element("user").Element("screen_name").Value }).ToList();

Now I dont know the form of twitter XML, but could it be that the element "statuses", contains multiple "status" elements.
So Desecendants("statuses") only find one element.
Would you not need to do

StatusCollection = (from status in xdoc.Descendants("status") select new TwitterStatus {
Text = status.Element("text").Value,
User = status.Element("user").Element("screen_name").Value }).ToList();

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