我在使用这个 where 子句时遇到了麻烦;
from item in
_documentRoot.Descendants("Level1").Descendants("Level2").Descendants("Level3")
where
_documentRoot.Descendants("Level1").Descendants("Level2").Attributes("id").First().Value == 12345
我想要一个 ID 为 12345 的 Level2 元素中的 Level3 项目列表。
一如既往,非常感谢