Set dest. naming convention
Precise a member mapping
Customize member mapping with a delegate
Ignore a member
Tell to reverse the mapper automatically
Set source naming convention
import automapper : MapperConfiguration, CreateMap; static class A { string foo; int bar; } static class B { string qux; int baz; } MapperConfiguration!( CreateMap!(A, B) .ForMember!("qux", "foo") .ForMember!("baz", "foo")) .createMapper();
Entry point for building an object mapper configuration in a fluent way