linq 接受可为 null 的值

发布于 2024-11-03 10:53:45 字数 276 浏览 0 评论 0原文

 var menuItems = from c in xMenuElement.Elements("GlobalNavigation").Elements("PrimaryLink")
                 where c.Element("SecondaryLink").Element("LeftMenu").Element("NavLinks").Element("LinkID").Value.Trim() == "sad1" 
                 select c;
 var menuItems = from c in xMenuElement.Elements("GlobalNavigation").Elements("PrimaryLink")
                 where c.Element("SecondaryLink").Element("LeftMenu").Element("NavLinks").Element("LinkID").Value.Trim() == "sad1" 
                 select c;

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

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

发布评论

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

评论(1

时光磨忆 2024-11-10 10:53:45

尝试一下,此技术可以重复多次,

var menuItems = from c in xMenuElement.Elements("GlobalNavigation").Elements("PrimaryLink")
                let secondaryLink = c.Element("SecondaryLink")
                where secondaryLink != null 
                   && secondaryLink.Element("LeftMenu").Element("NavLinks").Element("LinkID").Value.Trim() == "sad1"
                select c;

否则您可以创建一个方法:

var menuItems = from c in xMenuElement.Elements("GlobalNavigation").Elements("PrimaryLink")
                let linkId = GetLinkId(c)
                where linkId != null 
                select c;

string GetLinkId(XElement element)
{
    var secondaryLink = element.Element("SecondaryLink");
    if (secondaryLink == null) return null;
    var leftMenu = secondaryLink.Element("LeftMenu");
    if (leftMenu== null) return null;
    // ...
    return linkId.Value;
}

如果您仍然收到空引用异常,则可能是您的源存在问题。

var globalNav = xMenuElement.Elements("GlobalNavigation");
if (globalNav != null)
{
    var primaryLinks = globalNav.Elements("PrimaryLink");
    if (primaryLinks != null)
    {
           var menuItems = from c in primaryLinks //...
    }
}

Try this, this technique can be repeated multiple times

var menuItems = from c in xMenuElement.Elements("GlobalNavigation").Elements("PrimaryLink")
                let secondaryLink = c.Element("SecondaryLink")
                where secondaryLink != null 
                   && secondaryLink.Element("LeftMenu").Element("NavLinks").Element("LinkID").Value.Trim() == "sad1"
                select c;

Otherwise you can create a Method:

var menuItems = from c in xMenuElement.Elements("GlobalNavigation").Elements("PrimaryLink")
                let linkId = GetLinkId(c)
                where linkId != null 
                select c;

string GetLinkId(XElement element)
{
    var secondaryLink = element.Element("SecondaryLink");
    if (secondaryLink == null) return null;
    var leftMenu = secondaryLink.Element("LeftMenu");
    if (leftMenu== null) return null;
    // ...
    return linkId.Value;
}

If you are still getting a null reference exception it might be your source that has the issue.

var globalNav = xMenuElement.Elements("GlobalNavigation");
if (globalNav != null)
{
    var primaryLinks = globalNav.Elements("PrimaryLink");
    if (primaryLinks != null)
    {
           var menuItems = from c in primaryLinks //...
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文