Here is my AutoMapper configuration:
Mapper.CreateMap<Source, Destination>()
.ConstructUsing(s => new Destination(s.CreatedDate.DateTime));
Both classes have a single property, CreatedDate, but they are of different types:
public class Source
{
public DateTimeOffset CreatedDate { get; set; }
}
public class Destination
{
public Destination(DateTime created) { CreatedDate = created; }
public DateTime CreatedDate { get; set; }
}
This configuration works fine when I'm mapping between an instantiation of one to the other, but a problem appears when I map between enumerables of these types as in:
var dests = Mapper.Map<IEnumerable<Source>, Destination[]>(sources);
In this case, AutoMapper calls the Destination constructor for the first element to be mapped, but apparently proceeds to auto-map the remaining elements. The auto-mapping throws an exception because the identically-named CreatedDate properties are of different types.
If I change the name of one of the properties - say, Destination.Created - the constructor is called on all elements as you would expect.
I'm using the latest version of AutoMapper (v1.1.0.188). This seems like it must be a bug, but perhaps I've overlooked something?