Is is possible with Automapper to setup a convention so that maps do not have to be created by hand for situations where the entity you are mapping to just has say "ViewModel" appended.
As an example I would rather not have to setup the following map:
Mapper.CreateMap<Error, ErrorViewModel>();
I understand if projection is required that I would need to create a custom map, but having a convention to create maps would be nice.