My favorite feature of AutoMapper is its LINQ support. If you're using AutoMapper, and not using its queryable extensions, you're missing out!
Normal AutoMapper usage is something like:
var dest = _mapper.Map(source);
Which would be equivalent to:
var dest = new Dest {
Thing = source.Thing,
Thing2 = source.Thing2,
FooBarBaz