Describe the feature:
Allow to specify type for Automap as Type argument. Currently it's only possible as a generic parameter:
client.Map<MyType>(map => map.AutoMap());
It would be great to support something like this:
client.Map<object>(map => map.AutoMap(typeof(MyType)));