我有以下似乎无法查询的xml程序包,因为它不包含根元素。不幸的是,xml有效负载无法更改,因此我被这种方法所困扰。我想知道是否有一个很好的方法来更改我的示例。我也尝试使用DesendantsAndSelf,但无法使其正常工作。 Tnx为您提供帮助。
string xml = @"<book number='3'>
<description>Test</description>
<chapter number='3-1-1'>
<description>Test</description>
</chapter>
<chapter number='3-1-2'>
<description>Test</description>
</chapter>
</book>";
这是我的代码示例:
XElement element= XElement.Parse(xml);
List<Book> books = ( from t in element.Descendants("book")
select new Book
{
number = (String)t.Attribute("number"),
description = (String)t.Element("description").Value,
// Load the chapter information
chapters = t.Elements("chapter")
.Select(te => new Chapter
{
number = (String)te.Attribute("number"),
description = (String)t.Element("description").Value
}).ToList(),
}).ToList();
foreach(var d in books)
{
Console.WriteLine(String.Format("number = {0}: description = {1}",d.number,d.description));
foreach(var c in d.chapters)
Console.WriteLine(String.Format("number = {0}: description = {1}",c.number,c.description));
}
这是我的课程对象:
public class Book
{
public String number { get; set; }
public String description { get; set; }
public List<Chapter> chapters { get; set; }
}
public class Chapter
{
public String number { get; set; }
public String description { get; set; }
}
答案 0 :(得分:2)
只需将XElement element= XElement.Parse(xml);
更改为var element = XDocument.Parse(xml);
。在这种情况下,您将获得一个XDocument
实例,该实例具有一个book
后代。如果您使用XElement element= XElement.Parse(xml);
,则当前元素将是book
,它没有任何book
后代。