gpt4 book ai didi

wcf - omu.valueinjecter 深度克隆与类型不同

转载 作者:行者123 更新时间:2023-12-01 18:17:02 25 4
gpt4 key购买 nike

我认为我缺少一个关于 valueinjecter 和/或 AutoMapper 的简单概念,但是如何将父级 dto.Entity 深度克隆到 biz.Entity 并包含所有子级?

例如,biz.person.InjectFrom(dto.person)。我希望 dto.person.AddressList 集合复制到 biz.person.AddressList 集合,即使 dto.Address 和 biz.Address 与类型不同,但具有相同的属性名称。

我的想法是,如果父属性名称拼写相同,例如AddressList,那么如果两个底层对象的类型不同也没关系。它仍然会复制同名的简单类型,如 int、string 等。

谢谢

最佳答案

当对象中的数组/列表具有相同名称但不同类型(即 ORMAnimals[] 类型的名为 Animals 的属性映射到 Animals[] 类型的名为 Animals 的属性时,我遇到了同样的问题。

对 Chuck Norris 的深度克隆示例代码进行一些细微调整 page我在我的测试代码中得到了它的工作:

public class CloneInjection : ConventionInjection
{
protected override bool Match(ConventionInfo c)
{
return c.SourceProp.Name == c.TargetProp.Name && c.SourceProp.Value != null;
}

protected override object SetValue(ConventionInfo c)
{
//for value types and string just return the value as is
if (c.SourceProp.Type.IsValueType || c.SourceProp.Type == typeof(string)
|| c.TargetProp.Type.IsValueType || c.TargetProp.Type == typeof(string))
return c.SourceProp.Value;

//handle arrays
if (c.SourceProp.Type.IsArray)
{
var arr = c.SourceProp.Value as Array;
var clone = Activator.CreateInstance(c.TargetProp.Type, arr.Length) as Array;

for (int index = 0; index < arr.Length; index++)
{
var a = arr.GetValue(index);
if (a.GetType().IsValueType || a.GetType() == typeof(string)) continue;
clone.SetValue(Activator.CreateInstance(c.TargetProp.Type.GetElementType()).InjectFrom<CloneInjection>(a), index);
}
return clone;
}


if (c.SourceProp.Type.IsGenericType)
{
//handle IEnumerable<> also ICollection<> IList<> List<>
if (c.SourceProp.Type.GetGenericTypeDefinition().GetInterfaces().Contains(typeof(IEnumerable)))
{
var t = c.TargetProp.Type.GetGenericArguments()[0];
if (t.IsValueType || t == typeof(string)) return c.SourceProp.Value;

var tlist = typeof(List<>).MakeGenericType(t);
var list = Activator.CreateInstance(tlist);

var addMethod = tlist.GetMethod("Add");
foreach (var o in c.SourceProp.Value as IEnumerable)
{
var e = Activator.CreateInstance(t).InjectFrom<CloneInjection>(o);
addMethod.Invoke(list, new[] { e }); // in 4.0 you can use dynamic and just do list.Add(e);
}
return list;
}

//unhandled generic type, you could also return null or throw
return c.SourceProp.Value;
}

//for simple object types create a new instace and apply the clone injection on it
return Activator.CreateInstance(c.TargetProp.Type)
.InjectFrom<CloneInjection>(c.SourceProp.Value);
}
}

关于wcf - omu.valueinjecter 深度克隆与类型不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8249891/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com