linq to xml 选择 Node 值开头的节点的同级节点

发布于 2024-10-02 14:19:28 字数 548 浏览 2 评论 0原文

我需要复制一个 xsl 语句,其中选择节点值的同级节点。

前任。

XSL 语句

<xsl:value-of select="//FullProblemList/Test[starts-with(ReadCode, '13l')]/Notes"/>

linq 语句

if (document.Descendants("FullProblemList").Descendants("Test").Descendants("ReadCode").First().Value.StartsWith("13l"))
            {
                this.lbl_patInfo_language.Text = document.Descendants("FullProblemList").Descendants("Test").Descendants("ReadCode").First().Value.StartsWith("13l").ToString();

            }

I need to replicate a xsl statement where is selecting the sibling node of the node value starts with.

ex.

XSL statement

<xsl:value-of select="//FullProblemList/Test[starts-with(ReadCode, '13l')]/Notes"/>

linq statement

if (document.Descendants("FullProblemList").Descendants("Test").Descendants("ReadCode").First().Value.StartsWith("13l"))
            {
                this.lbl_patInfo_language.Text = document.Descendants("FullProblemList").Descendants("Test").Descendants("ReadCode").First().Value.StartsWith("13l").ToString();

            }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绻影浮沉 2024-10-09 14:19:28

我认为这就是您想要的:

document.Descendants("FullProblemList")
        .Elements("Test")
        .Where(test => test.Element("RealCode").Value.StartsWith("13l"))
        .Select(test => test.Elements("Notes"));

它将为您提供一个 IEnumerable,其中包含所有 Test 元素的所有 Notes 元素有一个以 13l 开头的 RealCode 元素

I think this is what you want:

document.Descendants("FullProblemList")
        .Elements("Test")
        .Where(test => test.Element("RealCode").Value.StartsWith("13l"))
        .Select(test => test.Elements("Notes"));

It will give you an IEnumerable<XElement> that contains all the Notes elements for all the Test elements that have a RealCode element that starts with 13l

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文