Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 519259
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:01:21+00:00 2026-05-13T08:01:21+00:00

This may be a simple fix (well, it probably is) but for some reason

  • 0

This may be a simple fix (well, it probably is) but for some reason I just can’t figure it out.

So, I have some xml that looks something like this:

XElement xml = XElement.Parse (
@"<Alphabet>
     <a name="A" />
     <b name="B" />
     <d name="D" />
     <e name="E" />
</Alphabet>");

So later in my code, I reference a node that may or may not exist in there like so:

var name = (from b in xml.Descendants("c")
            select b.Attribute("name")).FirstOrDefault().Value;

But when it doesn’t exist, instead of returning null or “” it throws a NullReferenceException: Object reference not set to an instance of an object.

What’s the best way to check and see if a node actually exists in my linq query? Or do I need to check if it exists some other way?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T08:01:22+00:00Added an answer on May 13, 2026 at 8:01 am

    Well, you’re selecting the attribute – so just use:

    var nameAttribute = xml.Descendants("c").Select(b => b.Attribute("name"))
                                            .FirstOrDefault();
    if (nameAttribute != null)
    {
        string name = nameAttribute.Value;
    }
    else
    {
        // Whatever...
    }
    

    (I’ve changed it from a query expression to dot notation because the query was trivial – query expression syntax wasn’t actually buying you anything.)

    One problem with this solution: it doesn’t differentiate between there being a “c” element but it not having a “name” attribute, and there not being a “c” element in the first place. Do you need to be able to tell the difference?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

this may be stupidly simple but I'm trying to figure out a way to
This may be a simple question though can´t figure out how to do it.
This may be a simple fix and maybe I'm missing something obvious, but when
This may be a simple question but I can;t find the answer anywhere. Here
This may well be simple, but I'm new to Drupal. The organization I work
Okay this may be a simple question but I have yet to come with
I am new to PHP so this may be a simple fix. I have
This may seem like a very simple question, but I have been struggling with
There may be a simple fix for this, but it has troubled me for
This may be a simple fix - but I'm trying to sum together all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.