当前位置:  开发笔记 > Android > 正文

XDocument.Descendants()不返回任何元素

如何解决《XDocument.Descendants()不返回任何元素》经验,为你挑选了1个好方法。

我正在尝试将Silverlight DataGrid绑定到WCF服务调用的结果.我没有看到网格中显示的数据,所以当我浏览调试器时,我注意到XDocument.Descendants()即使在传入有效的元素名称时也没有返回任何元素.这是从服务传回的XML:


  
    1953-09-02T00:00:00
    10001
    Georgi
    M
    1986-06-26T00:00:00
    Facello
  
  
    1964-06-02T00:00:00
    10002
    Bezalel
    F
    1985-11-21T00:00:00
    Simmel
  

这里是我用来将结果加载到匿名对象集合中的方法,使用Linq到XMl,然后将集合绑定到网格.

void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs args)
{
    if (args.Error != null) return;
    var xml = XDocument.Parse(args.Result);
    var employees = from e in xml.Descendants("Employee")
                    select new
                    {
                        EmployeeNumber = e.Element("EmployeeNumber").Value,
                        FirstName = e.Element("FirstName").Value,
                        LastName = e.Element("LastName").Value,
                        Birthday = e.Element("BirthDate").Value
                    };
    DataGrid.SelectedIndex = -1;
    DataGrid.ItemsSource = employees;
}

知道为什么xml.Descendants("Employee")不退货吗?

谢谢!



1> Ash..:

传递给Descendents的字符串参数实际上是隐式转换为XName对象.XName表示完全限定的元素名称.

该文档定义了名称空间"i",因此我认为您需要使用完全限定名称来访问Employee.即.i:Employee,前缀"i:实际上解析为完整的命名空间字符串.

你尝试过类似的东西:

XName qualifiedName = XName.Get("Employee", "http://www.w3.org/2001/XMLSchema-instance");

var employees = from e in xml.Descendants(qualifiedName)

...

推荐阅读
路人甲
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有