我正在使用 linq 代码解析 XML 文件。这是我的代码。我想要绑定详细信息和图像是列表。
var query = from l in xmlDoc.Descendants("Person")
from detail in l.Descendants("Details")
select new Notch
{
name = (string)l.Attribute("name").Value,
detail= l.Element("detail").Select(a => (string)a.Attribute("detailName")).ToList(),
Image = l.Element("detail").Elements("event_image").Select(x => (string)x.Attribute("url")).ToString()
};
foreach (var result in query)
{
foreach (var detail in result.detail)
{
Console.WriteLine(detail);
}
}
我尝试了这段代码,但我得到了如下所示的输出..但我想要详细信息和图像是列表。
Raja
System.Collection.Generic.List'1[string.system]
Rama
System.Collection.Generic.List'1[string.system]