Skip to content

Instantly share code, notes, and snippets.

@juristr
Created October 1, 2012 15:28
Show Gist options
  • Save juristr/3812508 to your computer and use it in GitHub Desktop.
Save juristr/3812508 to your computer and use it in GitHub Desktop.
AutoMapper Bidirectional Mapping Extension
public static class AutoMapperExtensions
{
public static void Bidirectional<TSource, TDestination>(this IMappingExpression<TSource, TDestination> expression)
{
Mapper.CreateMap<TDestination, TSource>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment