Given this these classes, how can I map a dictionary of them?
public class TestClass { public string Name { get; s
AutoMapper has changed a bit so it looks more like:
CreateMap() .ReverseMap(); CreateMap>() .ConstructUsing((t, ctx) => new KeyValuePair(t.id, ctx.Mapper.Map(t)));