<!-- If you are filing a feature request, please remove the above bug report block and provide responses for all of the below items. --> **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)));