简单的 LINQ 到 XML 查询将不起作用
本文关键字:查询 不起作用 XML LINQ 简单 | 更新日期: 2023-09-27 18:33:11
这有效,但很慢,
[System.Web.Script.Services.ScriptMethod()]
[System.Web.Services.WebMethod]
public static List<string> GetNames(string prefixText, int count)
{
XmlDocument xmlArtist = new XmlDocument();
xmlArtist.Load(string.Format(" http://ws.audioscrobbler.com/2.0/?method=chart.gettopartists&api_key={0}&limit=100", key));
List<string> topartists = new List<string>();
foreach (XmlNode node in xmlArtist.SelectNodes("lfm/artists/artist"))
{
string a = node.SelectSingleNode("name").InnerText.ToString();
if (a.Contains(prefixText))
{
topartists.Add(a);
}
}
return topartists;
我想将其转换为 LINQ 查询以加快速度,我已经有一段时间没有使用 LINQ 并且一直在查看很多示例,无法弄清楚为什么这不起作用。
[System.Web.Script.Services.ScriptMethod()]
[System.Web.Services.WebMethod]
public static List<string> GetNames(string prefixText, int count)
{
List<string> topartists = new List<string>();
XElement element = XElement.Load("http://ws.audioscrobbler.com/2.0/?method=chart.gettopartists&api_key=...&limit=100");
IEnumerable<XElement> artists =
from el in element.Elements("artist")
where el.Element("name").Value.Contains(prefixText)
select el;
foreach (XElement el in artists)
topartists.Add(el.Value);
return topartists;
这是我使用的XML的一部分:
<lfm status="ok">
<artists page="1" perPage="100" totalPages="10" total="1000">
<artist>
<name>Coldplay</name>
<playcount>849564</playcount>
<listeners>124389</listeners>
<mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
<url>http://www.last.fm/music/Coldplay</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/214667.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/214667.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/214667.png</image>
<image size="extralarge">http://userserve-ak.last.fm/serve/252/214667.png</image>
<image size="mega">http://userserve-ak.last.fm/serve/_/214667/Coldplay.png</image>
</artist>
<artist>
<name>Radiohead</name>
<playcount>960812</playcount>
<listeners>104849</listeners>
<mbid>a74b1b7f-71a5-4011-9441-d0b5e4122711</mbid>
<url>http://www.last.fm/music/Radiohead</url>
<streamable>1</streamable>
<image size="small">http://userserve-ak.last.fm/serve/34/24688757.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64/24688757.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/24688757.png</image>
<image size="extralarge">http://userserve-ak.last.fm/serve/252/24688757.png</image>
<image size="mega">http://userserve-ak.last.fm/serve/_/24688757/Radiohead.png</image>
</artist>
<artist>
Elements()
只返回直接子元素,但根元素是lfm
,所以你唯一的子元素是artists
与"artist"不匹配 - 所以没有匹配的元素。您可以像这样修复查询:
IEnumerable<XElement> artists =
from el in element.Element("artists").Elements("artist")
where el.Element("name").Value.Contains(prefixText)
select el;
我怀疑这个 Linq 到 XML 查询会比您之前的查询快得多,因为它本质上是在做同样的工作。