I am attempted to use AutoMapper to map a DataServiceCollection to a list of strings and also create the reverse mapping. Any ideas on how to map a specialized collection like this to another?
Mapper.CreateMap<DataServiceCollection<LocationCountyValue>, List<string>>();