1

私は3つのエンティティを持っています: Obj1, Obj2,Obj3

automapperで3つのエンティティを1つにマッピングするには?

4

2 に答える 2

7

この投稿では、次のヘルパークラスを使用して、複数のオブジェクトを1つの新しいオブジェクトにマップする方法について説明します。

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

簡単な使用法:

var personViewModel = EntityMapper.Map<PersonViewModel>(person, address, comment);
于 2012-11-23T05:29:51.650 に答える
0

それらを にマッピングする必要があるとしましょうObj0。基本的に、それらを 1 つずつマッピングする必要があります。

Mapper.Map(Obj1, Obj0);
Mapper.Map(Obj2, Obj0);
Mapper.Map(Obj3, Obj0);

より高度なシナリオでは、タイプをいくつかに構成し、とCompositeObjの間のマッピングを作成できます。Obj0CompositeObj

于 2012-11-23T05:39:18.263 に答える