I have two classes like so:
public class SentEmailAttachment : ISentEmailAttachment { public SentEmailAttachment(); public string FileName { get; set; }
You do not need to explicitly map collection types, only the item types. Just do:
Mapper.CreateMap(); var attachments = Mapper.Map, List>(someList);
That will work just fine.