AutoMapper - 为什么要覆盖整个对象?

时间:2013-08-10 15:41:22

标签: c# automapper dto automapping automapper-2

我不明白为什么它会覆盖我的整个对象。原因是我从db获取了User对象,我想从DTO分配新值。它不是仅仅添加这些新值,而是创建具有新值但前面所有值都设置为null的新对象。

如何确保在这种情况下他会“升级”我的对象,而不是创建新对象?

方案

/users/{id} - PUT

// User has id, username, fullname
// UserPut has fullname
public HttpResponseMessage Put(int id, UserPut userPut)
{
    var user = _db.Users.SingleOrDefault(x => x.Id == id); // filled with properties

    Mapper.CreateMap<UserPut, User>();
    user = Mapper.Map<User>(userPut); // now it has only "fullname", everything else set to null

    // I can't save it to db because everything is set to null except "fullname"

    return Request.CreateResponse(HttpStatusCode.OK, user);
}

1 个答案:

答案 0 :(得分:8)

Mapper.Map有一个重载,它带有一个源和一个目标对象。在这种情况下,Automapper将使用给定的目标对象,而不会创建新对象。

因此您需要将Mapper.Map重写为:

Mapper.Map<UserPut, User>(userPut, user);