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 6894999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:51:10+00:00 2026-05-27T06:51:10+00:00

I am checking to see if element1, element 2 or element 3 exists and

  • 0

I am checking to see if element1, element 2 or element 3 exists and then add them to finalData if they exist. However
if one of those dont exist or are not true then I just want to add the elements whose bool value is true! Below is my code

bool hasElement1 = (

                from Playlist in loaded.Descendants("Node")
                select Playlist.Descendants("Element1").Any()
                ).Single();

bool hasElement2 = (

                from Playlist in loaded.Descendants("Node")
                select Playlist.Descendants("Element2").Any()
                ).Single();

bool hasElement3 = (

                from Playlist in loaded.Descendants("Node")
                select Playlist.Descendants("Element2").Any()
                ).Single();

var finalData = from x in loaded.Descendants("Node")

                            select new
                            {

                                Element1 = x.Descendants("Element1").First().Value,
                                Element2 = x.Descendants("Element2").First().Value,
                Element3 = x.Descendants("Element3").First().Value,

                            };
  • 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-27T06:51:11+00:00Added an answer on May 27, 2026 at 6:51 am

    You don’t need to check if the elements exist before retrieving them. Try this:

    var finalData = from x in loaded.Descendants("Node")
                    select new
                    {
                       Element1 = (string)x.Descendants("Element1").FirstOrDefault(),
                       Element2 = (string)x.Descendants("Element2").FirstOrDefault(),
                       Element3 = (string)x.Descendants("Element3").FirstOrDefault(),
                    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Checking the HTML source of a question I see for instance: <a id=comments-link-xxxxx class=comments-link>add
I'm trying to test if a DOM element exists, and if it does exist
I find myself checking to see if javascript elements exist a lot using: if
I'm iterating over a bunch of child nodes and checking to see if they
Checking to see if __name__ == '__main__' is a common idiom to run some
I require a means of checking to see if a string has the following
Since PHP is a dynamic language what's the best way of checking to see
I'm doing some unit testing, and some of the code is checking to see
I'm working on a silverlight application where I'm checking the url to see if
I'm trying to test to see if an input field matches one of my

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.