I'm creating WCF services that return data contract types by mapping Entity Framework types. What is the best place to put the Mapper.CreateMap calls? Should I do it in each service and only for that service, or should I do it on service startup?
Thoughts?