我正在使用这样的 XML:
<ListOfLore>
<q1:Lore xmlns:q1="http://www.rold.com/Data.xsd">
<q1:LoreNumber>15642</q1:LoreNumber>
</q1:Lore>
<q1:Lore xmlns:q1="http://www.rold.com/Data.xsd">
<q1:LoreNumber>15644</q1:LoreNumber>
</q1:Lore>
</ListOfLore>
我正在这样做,但我什么也没得到
var lores = (from ListOfLore in pjs.Descendants("ListOfLore")
from Lore in ListOfLore.Descendants()
where Lore.Name.LocalName == ("Lore")
select Lore);
我想Lore
从ListOfLore