私は3つのエンティティを持っています: Obj1
, Obj2
,Obj3
automapperで3つのエンティティを1つにマッピングするには?
私は3つのエンティティを持っています: Obj1
, Obj2
,Obj3
automapperで3つのエンティティを1つにマッピングするには?
この投稿では、次のヘルパークラスを使用して、複数のオブジェクトを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);
それらを にマッピングする必要があるとしましょうObj0
。基本的に、それらを 1 つずつマッピングする必要があります。
Mapper.Map(Obj1, Obj0);
Mapper.Map(Obj2, Obj0);
Mapper.Map(Obj3, Obj0);
より高度なシナリオでは、タイプをいくつかに構成し、とCompositeObj
の間のマッピングを作成できます。Obj0
CompositeObj