Я создал пользовательский класс внедрения для ValueInjecter , который выполняет рекурсивное внедрение для общих дочерних коллекций, но работает с существующими целевыми объектами, а не клонирует, как образец "CloneInjection" на сайте VI. Однако в настоящее время я выполняю приведение к известному типу (ICollection ), поэтому класс инъекции подходит только для одного типа с жестким кодом. Кажется, я не могу придумать способ динамически разыграть универсальный тип, какие-либо предложения? Вот код SetValue для моего класса "RecursiveInjection".
//for value types and string just return the value as is
if (c.SourceProp.Type.IsValueType || c.SourceProp.Type == typeof(string))
return c.SourceProp.Value;
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;
//get enumerable object in target
var targetCollection = c.TargetProp.Value as ICollection<MyTargetType>;
//possible to cast dynamically?
foreach (var o in c.SourceProp.Value as IEnumerable)
{
//get ID of source object
var sourceID = (int)o.GetProps().GetByName("ID").GetValue(o);
//find matching target object if there is one
var target = targetCollection.SingleOrDefault(x => x.ID == sourceID);
if (target != null)
{
target.InjectFrom<RecursiveInjection>(o);
}
}
return targetCollection;
}
}
Спасибо, Дано