asp.net-mvc – 使用Automapper更新现有的实体POCO

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 使用Automapper更新现有的实体POCO前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用EF4 DbContext为ASP.NET MVC应用程序提供模型.我使用viewmodels向视图提供数据,使用Automapper执行EF POCO和viewmodel之间的映射. Automapper做得很好,但在viewmodel发回控制器进行更新后,我不清楚使用它的最佳方法.

我的想法是使用viewmodel中包含的密钥获取POCO对象.然后,我想使用Automapper使用viewmodel中的数据更新POCO:

[HttpPost]
public ActionResult Edit(PatientView viewmodel)
{
    Patient patient = db.Patients.Find(viewmodel.Id); 
    patient = Mapper.Map<viewmodel,Patient>(viewmodel,patient);
    ...
    db.SaveChanges();
    return RedirectToAction("Index");
}

两个问题:

> Find()方法返回一个代理而不是一个导致Automapper投诉的POCO.我如何获得POCO而不是代理?
>这是执行更新的最佳做法吗?

解决方法

如果您使用这样的Automapper,它将返回一个新的Patient对象,并且不会保留对enity框架图的引用.你必须像这样使用它:
[HttpPost]
public ActionResult Edit(PatientView viewmodel)
{
    Patient patient = db.Patients.Find(viewmodel.Id); 
    Mapper.Map(viewmodel,patient);
    ...
    db.SaveChanges();
    return RedirectToAction("Index");
}
原文链接:https://www.f2er.com/aspnet/251510.html

猜你在找的asp.Net相关文章