我有以下xml
<Location xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Latitude>-1</Latitude>
<Longtitude>-1</Longtitude>
</Location>
如果没有命名空间 (xmlns:i...),我可以使用以下查询
//xdoc is an XDocument loaded with the above xml
var locCollection = from p in xdoc.Descendants("Location")
使用命名空间但没有前缀“i”,我可以使用以下查询
XNamespace ns = @"http://www.w3.org/2001/XMLSchema-instance"
var locCollection = from p in xdoc.Descendants(ns + "Location")
那么我该如何处理 te "i" 前缀呢?
谢谢。