I need to present all DateTime values as local, but store them as UTC. How can I tell AutoMpapper than when it maps MappedViewModel to EntityBase it must convert dates from local to UTC, and then vice versa?
I already know how to do the conversion, so this question applies only to the mapping.
Could you do this with a Custom Type Converter? When registered, it appears they are global in scope, so in theory, you could apply it to all DateTime types.