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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:47:09+00:00 2026-05-13T06:47:09+00:00

I’ve currently got an XML element in my database that maps to an object

  • 0

I’ve currently got an XML element in my database that maps to an object (Long story short the XML is complicated and dynamic enough to defy a conventional relational data structure without massive performance hits).

Around it I’ve wrapped a series of C# objects that encapsulate the structure of the XML. They work off a base class and there’s multiple different possible classes it’ll deserialize to with different data structures and different implemented methods. I’m currently wrapping the functionality to serialize/deserialize these into a partial class of the LINQ-generated database objects.

My current approach to this is:

    public Options GetOptions()
    {
        if (XmlOptions == null) return null;
        XmlSerializer xs = new XmlSerializer(typeof(Options));
        return (Options)xs.Deserialize(XmlOptions.CreateReader());
    }

    public void SetOptions(Options options)
    {
        if (XmlOptions == null) Options = null;
        else
        {
            XmlSerializer xs = new XmlSerializer(typeof(Options));
            using (MemoryStream ms = new MemoryStream())
            {
                xs.Serialize(ms, options);
                XmlOptions = System.Xml.Linq.XElement.Parse(System.Text.UTF8Encoding.UTF8.GetString(ms.ToArray()));
            }
        }
    }

(To help with reading given the changed names aren’t too clear, XmlOptions is the XElement element from LINQ and Options is my class it deserializes into)

Now, it works. But that’s not really enough to call it “finished” to me 😛 It just seems incredibly inefficient to serialize XML to a memory stream, convert it to a string, then re-parse it as XML. My question is – Is this the cleanest way to do this? Is there a more efficient/tidy mechanism for doing the serialization? Is there a better approach that’ll give me the same benefits (I’ve only got test data in the system so far, so I can change the XML structure if required)?

PS: I’ve renamed the fields to be more generic – so don’t really need comments about naming conventions 😉

  • 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-13T06:47:10+00:00Added an answer on May 13, 2026 at 6:47 am

    XmlSerializer.Serialize has an overload that takes an XmlWriter.

    You can create an XmlWriter that writes to an existing XElement by calling the CreateWriter method.

    You can therefore write the following:

    static readonly XmlSerializer xs = new XmlSerializer(typeof(Options));
    
    ...
    
    var temp = new XElement("Parent");
    
    using (var writer = temp.CreateWriter())
        xs.Serialize(writer, options);
    
    XmlOptions = Temp.FirstNode;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 322k
  • Answers 322k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I think Eigen is what you're looking for. http://eigen.tuxfamily.org/index.php?title=Main_Page It… May 14, 2026 at 12:54 am
  • Editorial Team
    Editorial Team added an answer The simple solution is to add an unencrypted column for… May 14, 2026 at 12:54 am
  • Editorial Team
    Editorial Team added an answer The :rfc1034identifier just formats it (if needed) so there are… May 14, 2026 at 12:54 am

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.