2

XDocument在 C# 中使用 Linq-to-XML 解析以下 XML 时遇到问题:

<matches count="9">
<books count="4">
    <book>
        <key>books/batman_dark_knight_returns/frank_miller</key>
        <title>Batman: The Dark Knight Returns</title>
    </book>
    ...
</books>
<movies count="4">
    <movie>
        <key>movies/batman_tales_of_dark_knight/boy_kirklan</key>
        <title>Batman: Tales of the Dark Knight</title>
    </movie>
    ...
</movies>
<music count="1">
    <album>
        <key>music/dark_knight/hans_zimmer</key>
        <title>The Dark Knight</title>
    </album>
</music> </matches>

我非常非常错误的代码片段是

var data = from query in xmlFeed.Descendants("books")
           select new Book
           {
               Title = (string)query.Element("book").Element("title"),

               count = (string)query.Element("stickers").Element("sticker").Element("count")

           };

searchListBox.ItemsSource = data;

有关如何解析这样的 xml 的任何帮助,该 xml 将返回可以绑定到列表框的长列表中的书籍、电影、电视节目?

谢谢

4

2 回答 2

4

怀疑你想要类似的东西:

var books = xmlFeed.Descendants("book").Select(x => Book.FromXElement(x));
var movies = xmlFeed.Descendants("movie").Select(x => Movie.FromXElement(x));
var albums = xmlFeed.Descendants("album").Select(x => Album.FromXElement(x));

// I'm assuming you're using .NET 4 here, otherwise it becomes slightly uglier.
var allResults = books.Concat<object>(movies).Concat(albums).ToList();

那是假设您FromXElement为每个类添加了一个静态方法,我通常发现这是一种处理此类事情的干净方法。如果您愿意,您可以内联进行,但是当您开始获取更多位时,它会使查询代码变得越来越大。

于 2012-07-04T20:27:36.990 回答
0

如果所有key的都跟在title节点后面:

var all = xmlFeed.Descendants("key").Select(x => new {
          Key = x.Value,
          Title = ((XElement)x.NextNode).Value
          // else the Title would be
          // Title = x.Parent.Element("title").Value
          }).ToList();

这会将所有键和标题作为一个长列表。

于 2012-07-05T07:53:14.297 回答