Are there any closed or open source projects for a XML serializer for C# that can serialize for the most part any object without the need to pollute my domain objects with tons of attributes? That will also handle serialization of collections built with the internal generics classes? A bonus would be that it can handle serializing an interface type property. Another bonus would be that it can serialize objects that have read-only properties (or atleast with the get accessor marked internal)
|
|
|||||||
|
|
|
Well, first define "advanced", i.e. what specifically do you need that I'm not aware of any like alternatives, simply because in most cases this is "good enough" - and it is often a mistake to try to brute-force your existing domain object into a DTO. It may be simpler and more maintainable to simply map your domain entities onto a new DTO(s) that are attributed (and have appropriate ctor/properties/etc). Note that for the ctor/properties issue |
||
|
|
|
XmlSerializer is almost always exactly what people want, they just don't know that it is as flexible as it really is. |
||
|
|
