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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T03:18:16+00:00 2026-06-13T03:18:16+00:00

I have an XDocument that contains a number of data items. I have another

  • 0

I have an XDocument that contains a number of data items.

I have another XDocument that contains a very small collection of data items. The data items in the smaller document have corresponding elements in the larger document at matching paths.

What I want to do is loop through the smaller document and for each element I find I want to update the larger document so that its corresponding value is replaced with that of the smaller document.

For example, the larger document:

<Rootelement>
  <Desktop>
    <A>
      <El1 label="original blah" />
    </A>
  </Desktop>
  <Desktop>
    <B>
      <El2 />
    </B>
  </Desktop>
  <Desktop>
    <C>
      <El3 label="I'm the label" tooltip="I'm the tooltip" />
    </C>
  </Desktop>
</Rootelement>

The smaller document:

<Rootelement>
  <Desktop>
    <C>
      <El3 label="The NEW Label" tooltip="The NEW Tooltip" />
    </C>
  </Desktop>
</Rootelement>

I want to take the element at the path Rootelement/Desktop/C/El3 and replace the element at the same path in the larger document with the one from the smaller one, so the large document becomes:

<Rootelement>
  <Desktop>
    <A>
      <El1 label="original blah" />
    </A>
  </Desktop>
  <Desktop>
    <B>
      <El2 />
    </B>
  </Desktop>
  <Desktop>
    <C>
      <El3 label="The NEW Label" tooltip="The NEW Tooltip" />
    </C>
  </Desktop>
</Rootelement>

What is the best way for me to do this?

  • 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-06-13T03:18:18+00:00Added an answer on June 13, 2026 at 3:18 am
    var xDocBig = XDocument.Parse(xmlBig);
    var xDocSmall = XDocument.Parse(xmlSmall);
    
    var eBig = xDocBig.XPathSelectElement("/Rootelement/Desktop/C");
    var eSmall = xDocSmall.XPathSelectElement("/Rootelement/Desktop/C");
    
    eBig.ReplaceWith(eSmall);
    
    var newXml = xDocBig.ToString();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text document that contains a list of numbers and I want
I am working on Lotus Notes and I have a document that contains multiple
So, I have two arrays: grade[] and grade2[] that contains elements I give from
Suppose I have a document called test1.txt that contains the following numbers: 133213 123123
I have an ANSI-encoded CSV file that contains a number of 'problem' special characters.
I have a class that contains a number of standard fields and an arraylist.
I have a lightbox that contains a bunch of input elements that I have
I have a XDocument that looks like this: XDocument outputDocument = new XDocument( new
I have an XDocument that looks similar to <root> <a> <b foo=1 bar=2 />
I have a loaded XDocument that I need to grab all the attributes that

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.