'Entity translation service implementation

I have an asp.net application that communicates with a WCF. the WCF messages are represented in DTO classes.

to get the data from WCF I have to translate the DTO messages to a View DTO classes in order to be viewed in the application.

I remember there was an entity translation service at MSDN

but now the article says that the content is retired and moved to Web Service Software Factory.

I searched for the same service in WSSF but with no luck. is there a new replacement for this service ??? or is there a better implementation for the Entity Translation Service ??



Solution 1:[1]

I'm using the Glue library for entity mapping in my project. AutoMapper and enter link description here are some other popular libraries you can use.

Glue doesn't handle subclass mapping yet; but I prefer it over AutoMapper (which can map subclasses correctly). The way AutoMapper handles its configuration is too black-box like and error prone IMHO.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Thach Mai