使用 LINQ to XML 构建集合 - 由于某种原因仅获取顶部项目
因此,我尝试从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在我不知道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();