tags:

views:

170

answers:

1

I am planning to create my Own Custom Object Mapper for a type using AutoMapper's IObjectMapper interface, but i don't see any place where we can register the implemented mapper with AutoMapper. Could anyone tell me how to register it.

Edit: For more information on this please follow the discussion at AutoMapper-Users group

A: 

One way to go here is to replace the static registry function in the MapperRegistry class. Here's the current version:

public static Func<IEnumerable<IObjectMapper>> AllMappers = () => new IObjectMapper[]
{
#if !SILVERLIGHT
    new DataReaderMapper(),
#endif
    new TypeMapMapper(TypeMapObjectMapperRegistry.AllMappers()),
    new StringMapper(),
    new FlagsEnumMapper(),
    new EnumMapper(),
    new ArrayMapper(),
    new EnumerableToDictionaryMapper(),
    new DictionaryMapper(),
#if !SILVERLIGHT
    new ListSourceMapper(),
#endif
    new EnumerableMapper(),
    new AssignableMapper(),
    new TypeConverterMapper(),
    new NullableMapper()
};

You'd basically copy that one, and do something like:

MapperRegistry.AllMappers = () => new IObjectMapper[] {
   // Insert your custom mapper somewhere in this list
};

Just do that before you do any Mapper.CreateMap or Mapper.Initialize business. Mappers are evaluated in order.

Jimmy Bogard