I have customer object contains his contact information,transaction details,address details.
Here how to design my DTO object to hold all the information.I am getting output as xml file.Here i want to map xml to dto object automatically.
开发者_开发知识库Please give me any suggestions.
Regards, Chaitu
I don’t have enough details to give you a proper answer but I’ll try to give it a go. For what I have understood you need to map the customers details (XML based) to a kind of DTO object. I think a good solution could be deserialize the customer XML to the DTO object you need to create. Have a look at
http://savagelook.com/blog/portfolio/quick-tip-deserializing-xml-to-objects-in-c
http://www.codingday.com/xml-c-class-generator-for-c-using-xsd-for-deserialization/
精彩评论