AutoMapper - how to use type converter on a single property

Viewed 7462

Is it possible to use AutoMapper with a single property? I would like to convert a string value of comma delimited values to a list of values separated by a line feed on the UI.

The current custom converters only seem to work at the class level, and because the dest and source types are both string I can't create a single map based on .

How would I apply the custom converter on a single property? Or should the custom resolver be used instead?

1 Answers
Related