-
Recent Posts
Recent Comments
- Raif on Tips for building Nuget packages
- joshuaflanagan on Coordinating multiple ajax requests with jquery.when
- Kalina Todorova on Coordinating multiple ajax requests with jquery.when
- joshuaflanagan on How we handle application configuration
- Richard Brown on How we handle application configuration
Archives
- March 2012
- February 2012
- January 2012
- October 2011
- August 2011
- June 2011
- May 2011
- February 2011
- January 2011
- November 2010
- October 2010
- September 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- September 2008
Categories
Meta
Category Archives: automapper
AutoMapper Git workflow – dealing with bugs/issues
Along with the switch of VCS to git came the ability to have much improved workflows that simply weren’t possible in CVCS like TFS or SVN. The nice thing about Git over CVCS is that because of its power, I … Continue reading
AutoMapper source moved to GitHub
After putting it through the paces, I’m ready to (finally) announce that the AutoMapper source code has moved to GitHub: http://github.com/jbogard/AutoMapper I wanted to wait to “officially” move until I had moved the build over, added new features and processed … Continue reading
Teaching AutoMapper about our conventions
I often need to send data from my entities to the client in JSON format to enable rich AJAX functionality. It isn’t practical to serialize the entities directly, so they are first flattened to a data transfer object (DTO) before … Continue reading
Also posted in conventions
2 Comments
AutoMapper for Silverlight 3.0 Alpha
In between workshops here at the MVP Summit, I’ve been working on pushing out an early Alpha for an AutoMapper version built against Silverlight 3.0. Thanks to some existing patches from the community, it was pretty straightforward to get things … Continue reading
AutoMapper 1.0 RTW
AutoMapper is now officially 1.0. You can go grab the latest binaries here: AutoMapper 1.0 RTW Here are the release notes: New Features Changing the null substitute method name and allow any type of null substitute Consolidating custom constructor configuration … Continue reading
AutoMapper DSL design post-mortem
As I move towards the 1.0 release of AutoMapper, I’m already running in to things I wish I had done differently. I still will probably fix all of these eventually, but none of these design issues should prevent a release, … Continue reading
Automapper Auto Profile Registration.
On some of our projects we have been experimenting with smaller AutoMapper profiles. The idea is that it is easier to digest a smaller profile. We have gone so far as creating a profile for each Domain object and … Continue reading
An AutoMapper success story
I got a cool message on the AutoMapper mailing list from Howard Van Rooijen on how they used AutoMapper in a site they recently launched to production: Hello AutoMapper Community, I just wanted to let you know that an e-commerce … Continue reading
The case for two-way mapping in AutoMapper
I’m getting more and more requests around the area of two-way mapping, meaning you’d do something like: Product –> ProductDTO ProductDTO –> Product Product being an entity, I can’t for the life of me understand why I’d want to dump … Continue reading
AutoMapper 1.0 RC1 released
It’s been quite a long journey with AutoMapper, with the origins written just over a year ago now. I’ve focused on stability and performance since the 0.3.1 release back in May, and from here to the 1.0 release, I’ll just … Continue reading
