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

  • Home
  • SEARCH
  • 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 6843177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:12:50+00:00 2026-05-27T00:12:50+00:00

I am trying to serialize/deserialize objects that have factory-created members. For example, lets say

  • 0

I am trying to serialize/deserialize objects that have factory-created members. For example, lets say there are a member of type Foo, which is instantiated using FooFactory.CreateFoo(int bar).

My current idea is to

1.create a custom XmlReader (for example, derive from XmlTextReader), and attach the factory to it

2.implement IXmlSerializable

3.in ReadXml(), I can the grab the factory from the reader.

Not sure if this is the most elegant way to do it, has anybody made similar attempts ?

  • 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-27T00:12:51+00:00Added an answer on May 27, 2026 at 12:12 am

    XmlSerializer simply isn’t set up for that. I would strongly suggest that if you want to use XmlSerializer, your best bet would be to map your data to a simpler DTO model first, and serialize that. When writing code back from the DTO to your model, add the factory creation there, in regular code. The DTO model should be simple; simple enough for XmlSerializer to be happy with it.

    Yes, implementing IXmlSerializable is an option, however: that API is very hard to get 100% right (to handle all the various ways xml can appear to it). I find that API very hard, and I do a lot of serialization. I humbly submit that writing a few lines of code to map from your main model to a DTO model is a lot more robust (and a lot quicker) than trying to implement IXmlSerializable.

    For example, you could have:

    [XmlRoot("foo")]
    public class FooDTO {
         [XmlAttribute("bar")]
         public int Bar {get;set;}
    
         public static implicit operator Foo(FooDTO value)
         {
             return value == null ? null : FooFactory.Create(value.Bar);
         }
         public static implicit operator FooDTO(Foo value)
         {
             return value == null ? null : new FooDTO { Bar = value.Bar; }
         }
    }
    

    then you can convert from Foo to FooDTO simply by:

    Foo foo = ...
    FooDTO dto = foo;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say you have various objects of arbitrary type that you would like to
I'm trying to serialize and deserialize a tree of Node objects. My abstract Node
I'm trying to build a Lucene Serializer class that would serialize/de-serialize objects (classes) with
I have a very simple class that I'm trying to serialize: [ProtoContract] public class
I have a class that is able to serialize and deserialize with ease after
I'm trying to serialize a Type object in the following way: Type myType =
I'm trying to serialize a custom class that needs to use multiple elements of
I'm trying to serialize a type using the DataContractSerializer and am getting the exception
I'm trying to serialize an object to XML that has a number of properties,
I'm trying to serialize some objects obtained from a 3rd Party .NET Lib to

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.