I am using AutoMapper 1.0 RTW and adding a couple of custom formatters:
Mapper.AddFormatter<AlertTypeFormatter>();
Mapper.AddFormatter<DateStringFormatter>();
The destination types are both string and the formatters work individually. But put them together and only the first formatter gets called. In this case the "AlertTypeFormatter".
Any ideas?