asp.net 是否可以使用Automapper将多个DTO对象Map到单个ViewModel?

lztngnrs  于 2023-10-21  发布在  .NET
关注(0)|答案(6)|浏览(122)

我想知道是否可以使用Automapper将多个DTO对象Map到单个ViewModel对象?
本质上,我有多个DTO对象,并希望在ASP.NETMVC2.0中的单个屏幕上显示每个DTO对象的信息。为此,我想将DTO对象(或它们的一部分)扁平化到Viewmodel中,并将上述Viewmodel传递给视图。如果我有一个DTO,这将是容易的,但我从来没有见过它被多个完成。显然,有很多迂回的方法可以做到这一点(自动Map器之外),但这是我想采取的方法,如果可能的话。

lxkprmvk

lxkprmvk2#

您可以创建一个包含两个或多个DTO对象的复合DTO,并将复合DTOMap到输出视图模型。

kyvafyod

kyvafyod3#

如果有2个DTO类和1个展开视图模型:

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; }
}

然后为这两个DTO创建到视图模型的Map:

CreateMap<Dto1, FlattenedViewModel>();
CreateMap<Dto2, FlattenedViewModel>();

您可以将第一个DTOMap到模型,然后仅“附加”第二个DTO:

var dto1 = new Dto1 { Property1 = "Value1"; }
var dto2 = new Dto2 { Property2 = "Value2"; }

var model = Mapper.Map<FlattenedViewModel>(dto1); // map dto1 properties
Mapper.Map(dto2, model); // append dto2 properties
ncecgwcz

ncecgwcz4#

您可以在IMappingEngine之外添加一个Map override扩展方法,它接受一个params数组。例如:

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);
bfrts1fy

bfrts1fy5#

这是来自此答案中过期链接的信息:https://stackoverflow.com/a/8923063/2005596
在使用AutoMapper(http://automapper.codeplex.com)时,我经常遇到需要将多个实体Map到一个实体中的情况。这通常发生在从多个域实体Map到单个视图模型(ASP.NETMVC)时。不幸的是,AutoMapper API没有公开将多个实体Map到一个实体的功能;然而,创建一些帮助器方法来实现这一点相对简单。下面我将说明我所采取的方法。
在本例中,我的域模型中有以下实体

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; }

}

除此之外,我还需要在一个页面上呈现此人的详细信息、此人的地址和任何相关评论(使用ASP.NETMVC)。为了实现这一点,我创建了如下所示的视图模型,其中包括来自上述所有三个域实体的数据

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; }


}

在控制器操作方法中,我对域层进行了三次单独的调用,以检索所需的实体,但这仍然存在需要将多个源实体Map到单个目标实体的问题。为了执行这个Map,我创建了一个helper类,它封装了AutoMapper并公开了将多个源对象Map到一个目标对象的功能。此类如下所示

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;

    }

}

为了将多个源对象Map到一个目标上,我使用了AutoMapper提供的功能,该功能允许您在源对象和已经存在的目标对象之间执行Map。
最后,下面是控制器中的代码,它检索这三个实体并执行到单个视图模型的Map

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);

    }
wvt8vs2t

wvt8vs2t6#

我刚刚自己解决了这个问题,并有一个很好的解决方案。这两个视图很可能在系统中以某种方式实际上是相关的(特别是如果您使用的是Entity Framework)。检查你的模型,你应该看到一些显示关系的东西,如果你没有,那么就添加它。(virtual
你们的模特

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; }
    }

Automapper看起来像这样:

cfg.CreateMap< Dto1, Dto1ViewModel>();
        cfg.CreateMap< Dto2, Dto2VMForDto1 >();

我假设你正在使用LinQ获取数据:

Dto1ViewModel thePageVM = (from entry in context.Dto1 where...).ProjectTo<Dto1ViewModel>();

维奥拉一切都会好起来的在您的视图中,只需使用model.dto2.PropertyB访问

相关问题