public class Dto1
{
public string Property1 { get; set; }
}
public class Dto2
{
public string Property2 { get; set; }
}
public class FlattenedViewModel
{
public string Property1 { get; set; }
public string Property2 { get; set; }
}
public static class AutoMapperExtensions
{
public static T Map<T>(this IMappingEngine engine, params object[] sources) where T : class
{
if (sources == null || sources.Length == 0)
return default(T);
var destinationType = typeof (T);
var result = engine.Map(sources[0], sources[0].GetType(), destinationType) as T;
for (int i = 1; i < sources.Length; i++)
{
engine.Map(sources[i], result, sources[i].GetType(), destinationType);
}
return result;
}
}
你可以这样称呼它:
var result = Mapper.Engine.Map<MyViewModel>(dto1, dto2, dto3);
public class Person
{
public int Id { get; set; }
public string Firstname { get; set; }
public string Surname { get; set; }
}
public class Address
{
public int Id { get; set; }
public string AddressLine1 { get; set; }
public string AddressLine2 { get; set; }
public string Country { get; set; }
}
public class Comment
{
public string Text { get; set; }
public DateTime Created { get; set; }
}
public class PersonViewModel
{
public int Id { get; set; }
[DisplayName("Firstname")]
public string Firstname { get; set; }
[DisplayName("Surname")]
public string Surname { get; set; }
[DisplayName("Address Line 1")]
public string AddressLine1 { get; set; }
[DisplayName("Address Line 2")]
public string AddressLine2 { get; set; }
[DisplayName("Country Of Residence")]
public string Country { get; set; }
[DisplayName("Admin Comment")]
public string Comment { get; set; }
}
public static class EntityMapper
{
public static T Map<T>(params object[] sources) where T : class
{
if (!sources.Any())
{
return default(T);
}
var initialSource = sources[0];
var mappingResult = Map<T>(initialSource);
// Now map the remaining source objects
if (sources.Count() > 1)
{
Map(mappingResult, sources.Skip(1).ToArray());
}
return mappingResult;
}
private static void Map(object destination, params object[] sources)
{
if (!sources.Any())
{
return;
}
var destinationType = destination.GetType();
foreach (var source in sources)
{
var sourceType = source.GetType();
Mapper.Map(source, destination, sourceType, destinationType);
}
}
private static T Map<T>(object source) where T : class
{
var destinationType = typeof(T);
var sourceType = source.GetType();
var mappingResult = Mapper.Map(source, sourceType, destinationType);
return mappingResult as T;
}
}
public ActionResult Index()
{
// Retrieve the person, address and comment entities and
// map them on to a person view model entity
var personId = 23;
var person = _personTasks.GetPerson(personId);
var address = _personTasks.GetAddress(personId);
var comment = _personTasks.GetComment(personId);
var personViewModel = EntityMapper.Map<PersonViewModel>(person, address, comment);
return this.View(personViewModel);
}
public class Dto1
{
public int id { get; set; }
public string Property2 { get; set; }
public string Property3 { get; set; }
public string Property4 { get; set; }
public string Property5 { get; set; }
public virtual Dto2 dto2{ get; set; }
}
public class Dto2
{
public int id { get; set; }
public string PropertyB { get; set; }
public string PropertyC { get; set; }
public string PropertyD { get; set; }
public string PropertyE { get; set; }
}
您的视图模型
public class Dto1ViewModel
{
public string Property1 { get; set; }
public string Property2 { get; set; }
public virtual Dto2VMForDto1 dto2{ get; set; }
}
//Special ViewModel just for sliding into the above
public class Dto2VMForDto1
{
public int id { get; set; }
public string PropertyB { get; set; }
public string PropertyC { get; set; }
}
6条答案
按热度按时间3yhwsihp1#
检查以下链接关于您的查询
https://web.archive.org/web/20130417004510/http://consultingblogs.emc.com/owainwragg/archive/2010/12/22/automapper-mapping-from-multiple-objects.aspx
lxkprmvk2#
您可以创建一个包含两个或多个DTO对象的复合DTO,并将复合DTOMap到输出视图模型。
kyvafyod3#
如果有2个DTO类和1个展开视图模型:
然后为这两个DTO创建到视图模型的Map:
您可以将第一个DTOMap到模型,然后仅“附加”第二个DTO:
ncecgwcz4#
您可以在IMappingEngine之外添加一个Map override扩展方法,它接受一个params数组。例如:
你可以这样称呼它:
bfrts1fy5#
这是来自此答案中过期链接的信息:https://stackoverflow.com/a/8923063/2005596
在使用AutoMapper(http://automapper.codeplex.com)时,我经常遇到需要将多个实体Map到一个实体中的情况。这通常发生在从多个域实体Map到单个视图模型(ASP.NETMVC)时。不幸的是,AutoMapper API没有公开将多个实体Map到一个实体的功能;然而,创建一些帮助器方法来实现这一点相对简单。下面我将说明我所采取的方法。
在本例中,我的域模型中有以下实体
除此之外,我还需要在一个页面上呈现此人的详细信息、此人的地址和任何相关评论(使用ASP.NETMVC)。为了实现这一点,我创建了如下所示的视图模型,其中包括来自上述所有三个域实体的数据
在控制器操作方法中,我对域层进行了三次单独的调用,以检索所需的实体,但这仍然存在需要将多个源实体Map到单个目标实体的问题。为了执行这个Map,我创建了一个helper类,它封装了AutoMapper并公开了将多个源对象Map到一个目标对象的功能。此类如下所示
为了将多个源对象Map到一个目标上,我使用了AutoMapper提供的功能,该功能允许您在源对象和已经存在的目标对象之间执行Map。
最后,下面是控制器中的代码,它检索这三个实体并执行到单个视图模型的Map
wvt8vs2t6#
我刚刚自己解决了这个问题,并有一个很好的解决方案。这两个视图很可能在系统中以某种方式实际上是相关的(特别是如果您使用的是Entity Framework)。检查你的模型,你应该看到一些显示关系的东西,如果你没有,那么就添加它。(
virtual
)你们的模特
您的视图模型
Automapper看起来像这样:
我假设你正在使用LinQ获取数据:
维奥拉一切都会好起来的在您的视图中,只需使用
model.dto2.PropertyB
访问