PostSharp for an object mapper - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T23:04:38Z http://stackoverflow.com/feeds/question/927775 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/927775/postsharp-for-an-object-mapper 0 PostSharp for an object mapper Miha Necak 2009-05-29T19:41:58Z 2009-05-29T20:09:48Z <p>I'm considering using PostSharp for entity-to-DTO and DTO-to-entity mapper. To do that task manualy for about a 100 entities would be a maintenence nightmare. I've looked at AutoMapper on codeplex, but i think the overhead might be a serious problem in my case, besides i feel that PostSharp could give me some extra control over the mapping convention. If anyone can share any experiences with this king of problems, that would be great.</p> <p>The direction i'm think in is something like this (please somebody tell me if this is not possible):</p> <p>The aspect that i am planing to stick to a class would fill the next two methods with content:</p> <pre><code>EntityType EntityToDTO(DTOType DTO) {} DTOType DTOToEntity(EntityType Entity) {} </code></pre> <p>The first method would return entity based on DTO, the second one would do the oposite. Inside the aspect i'm planing to loop through each property, create new target and asign the value of a property to the counterpart from target object. Is this possible to do at compiletime witout any runtime overhead?</p> http://stackoverflow.com/questions/927775/postsharp-for-an-object-mapper/927848#927848 1 Answer by Bob for PostSharp for an object mapper Bob 2009-05-29T20:00:22Z 2009-05-29T20:00:22Z <p>If your DTOs field names match your entity field names, then I'd use Duck Typing</p> <p><a href="http://www.deftflux.net/blog/page/Duck-Typing-Project.aspx" rel="nofollow">http://www.deftflux.net/blog/page/Duck-Typing-Project.aspx</a></p> <p><a href="http://haacked.com/archive/2007/08/19/why-duck-typing-matters-to-c-developers.aspx" rel="nofollow">http://haacked.com/archive/2007/08/19/why-duck-typing-matters-to-c-developers.aspx</a></p> <p>Your code would work like this </p> <pre><code>UserDTO user = DuckTyping.Cast&lt;UserDTO&gt;(userEntity); </code></pre> <p>Basically, the duck typing library will be mapping over the fields by matching the names. They use dynamically generated IL to archive this. </p> <p>If that has the potential of being too slow, I'd probably try to get CodeSmith to generate the methods for me.</p> http://stackoverflow.com/questions/927775/postsharp-for-an-object-mapper/927885#927885 1 Answer by Gael Fraiteur for PostSharp for an object mapper Gael Fraiteur 2009-05-29T20:09:48Z 2009-05-29T20:09:48Z <p>If it helps, there is a project called PostSharp4ET that basically implements support for POCO objects to Entity Framework 1. See <a href="http://www.codeplex.com/efcontrib" rel="nofollow">http://www.codeplex.com/efcontrib</a>.</p> <p>Note that PostSharp is not very good at generating new code. It is good at mixing new code with existing one. If you need to generate code, I would recommend writing a C# code generator based on reflection, and compile the resulting code. Or use a tool like CodeSmith, as mentioned previously.</p>