I am using Automapper to transfer data from objectA to objectB
classe ObjectA { string Title; string Summary; } classe ObjectB { string Title; s
I found the solution.
I just discovered that Map method has an overloaded version that excepts a pre-instantiated destination object. Thanks to this article
Mapper.Map<IObjectA, IObjectB>(objectA, ObjectB );
@JoDG, Thank you for your help