我使用反射动态获取数据(实体类型在运行时定义)。每当我的currentObject没有1:N关系时(通过“First”泛型方法反射实现),Im当前返回单个对象,但我还需要获得1:N子节点,即EntityCollection< T>。
var valoresp = getFilho(pai, filho, raizAtual);
if (valoresp == null)
return new object();
if (!filho.A_Ocorrencia_Tabela.Contains("1:N"))
{
var firstMethod = typeof(Enumerable).GetMethods().Single(method => method.Name == "First"
&& method.IsStatic && method.GetParameters().Length == 1);
var interfaceImplementation = MethodResolver.GetImplementationOfInterface(valoresp.GetType(),
firstMethod.GetParameters().First().ParameterType.GetGenericTypeDefinition());
var genericArgumentsTypes = interfaceImplementation.GetGenericArguments();
var genericMethod = firstMethod.MakeGenericMethod(new[] { genericArgumentsTypes[0] });
try
{
var resultado = genericMethod.Invoke(null, new[] { valoresp });
return resultado;
}
catch (Exception)
{
return new object();
}
}
else
{
if (valoresp.GetType().IsGenericType && (valoresp.GetType().GetGenericTypeDefinition() == typeof(EntityCollection<>)) )
{
//here is the problem:
var typeValoresp = valoresp as EntityCollection<object>;
}
}
事实是我的“valoresp”变量可以是480种不同类型的EntityCollection(这就是为什么我不会手动检查类型)(EntityCollection&lt; table1&gt;,EntityCollection&lt; Table2&gt; ...)
我需要一个子对象列表,但找不到使用反射将EntityCollection转换为List的方法。
答案 0 :(得分:0)
刚想出如何:
首先检查它是否可枚举(因为EntityCollection实现IEnumerable)并强制转换为Enumerable,而不是尝试强制转换为EntityCollection。
然后你就可以使用Linq查询,方法等...而且还要避免转换为List(但你仍然可以,因为IEnumerable有.ToList()方法)
if (valoresp is IEnumerable<object>)
{
var valorEnum = valoresp as IEnumerable<object>;
...
//valorEnum.First / valorEnum.where(...) etc..
}