Skip to content

Instantly share code, notes, and snippets.

@detroitpro
Created March 4, 2010 16:35
Show Gist options
  • Save detroitpro/321860 to your computer and use it in GitHub Desktop.
Save detroitpro/321860 to your computer and use it in GitHub Desktop.
Mapper.CreateMap<SourceRequest, DestRequest>()
.ForMember(dest => dest.AppId, opt => opt.ResolveUsing<ApiKeyToAppId>()
.FromMember(src => src.ApiToken)
.FromMember(src => src.ConsumerId));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment