異なるタイプのemitmapperを使用する必要があります。defoultの場合、2つのジェネリック型が必要です。
ObjectMapperManager.DefaultInstance.GetMapper<TSource, TEntity>().Map(source, result);
私はこのようなことをする必要があります:
class Result { public string Name { set; get;} public int Age {set; get;} }
...
Result result;
object someType = new SomeTypes { Name = "TestName", Age = 23 }
ObjectMapperManager.DefaultInstance.GetMapper<object, Result >().Map(source, result);
Console.WriteLine(result.Name);