Answers:
使用采用现有目的地的重载:
Mapper.Map<Source, Destination>(source, destination);
是的,它返回目标对象,但这仅用于其他一些晦涩的情况。这是同一个对象。
为此,您必须为源和目标的类型创建CreateMap,即使它们是同一类型。这意味着如果您要
Mapper.Map<User, User>(user1, user2);
创建这样的地图
Mapper.Create<User, User>()
如果您希望使用IMapper的实例方法,而不是接受的答案中使用的静态方法,则可以执行以下操作(在中测试AutoMapper 6.2.2
)
IMapper _mapper;
var config = new MapperConfiguration(cfg =>
{
cfg.CreateMap<Source, Destination>();
});
_mapper = config.CreateMapper();
Source src = new Source
{
//initialize properties
}
Destination dest = new dest
{
//initialize properties
}
_mapper.Map(src, dest);
dest
现在将使用src
其共享的所有属性值进行更新。其唯一属性的值将保持不变。