Reader C# project need to persists ~POCO to file. But we are at our debut and changes occurs quite often. Our soft is already used (persisted) by few customers. I prefer to use XML over anything for many reasons.
I checked many many xml serialization libs.
- Many libs stores the specific type and version. I don’t need that.
- Many libs do not give us the possibility to serialize by ourself: ie we need an interface to custom load/save data (I see many advantages **)
- Some libs forces us to have empty constructor
- Some libs only manage public properties
- Some libs have many limitations on types (do not support Dictionary, …)
** (advantages of an interface to load/save data)
- Easier to manage many versions
- Enable to do hardcoded conversion if required (class x -> class y, … )
- Easier to not retain old code
I strongly think that for my needs we would better served by using the old way: a bit like deserializing in C++. I think we would be better served by something that would enable us to just add fields and fields name manually instead of using Attributes.
Kind of:
void XmlDeserialize(XmlReader xmlReader)
{
xmlReader.Load((n)=>Version(n)); // or just: _version = xmlReader.LoadInt("Version");
xmlReader.Load((n)=>Name(n));
xmlReader.Load((n)=>EmployeeId(n));
if (Version ==2)
…
If (version == 3)
…
The closest I have found to fit my needs was: DataContractSerializer that supports IExtensibleDataObject, but it is a pain and ass to use.
I question myself if I’m not wrong everywhere? It’s impossible I’m the only one with that need (or this vision). Why is nobody writing any lib for that, and did I miss something somewhere ?
What I think wrongly ? What do you recommend ?
ISerializableis not really intended for XML serialization; can you clarify: are you specifically looking for XML here? or just serialization? – Marc Gravell♦ May 31 '12 at 19:34