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>>();
Thanks to Thiago Sa I created the mapping in both directions like so: