我正在尝试将List
个System.Object
个对象转换为List
强类型对象。
以下是我遇到的错误:
类型为'System.Collections.Generic.List`1 [System.Object]'的对象无法转换为类型'System.Collections.Generic.List`1 [TestApp.Tsc_Mrc_Step]'。
目的是因为我正在为我的项目编写业务数据层,您所要做的就是将您的类和属性命名为与数据库中的实体相同的名称,数据层将自动将引用的表填充为类型在课堂上宣布。
业务数据层使用反射,泛型和对象来处理所有这些。
下面是我尝试将对象列表放入已知类型列表的代码。问题是,对象是已知类型,但我将其作为对象传递....如何将其转换为已知类型而不知道它是什么?
bool isCoollection = false;
Type t = GetTypeInsideOfObjectByTypeName(o, tableName, out isCoollection);
List<object> objectColl = new List<object>();
object obj = Activator.CreateInstance(t);
if (obj != null)
{
PropertyInfo[] objectProps = obj.GetType().GetProperties();
foreach (PropertyInfo op in objectProps)
{
if (HasColumn(reader, op.Name))
{
op.SetValue(obj, reader[op.Name]);
}
}
if (isCoollection)
{
objectColl.Add(obj);
}
}
if (isCoollection)
{
IEnumerable<object> objs = objectColl.AsEnumerable();
SetObject(o, objs);
}
else
{
SetObject(o, obj);
}
这是SetObject:
public static void SetObject(object parentObject, object newObject)
{
PropertyInfo[] props = parentObject.GetType().GetProperties();
string typeName = newObject.GetType().Name;
foreach (PropertyInfo pi in props)
{
if (pi.PropertyType.Name.ToLower() == typeName.ToLower())
{
pi.SetValue(parentObject, newObject);
}
else if (!pi.PropertyType.IsValueType && !pi.PropertyType.Namespace.ToLower().Contains("system"))
{
SetObject(pi.GetValue(parentObject), newObject);
}
}
}
答案 0 :(得分:4)
如果您知道列表中所有值都是必需类型:
List<Object> objects;
List<Cat> cats = objects.Cast<Cat>().ToList();
如果不是所有的值都属于这种类型,并且您想要清除那些不属于的类型:
List<Object> objects;
List<Cat> cats = objects.OfType<Cat>().ToList();
两者都需要LINQ。
如果您在运行时之前不知道类型,则必须使用反射。
答案 1 :(得分:0)
好的,我完成了我的目标。一切都归功于动态变量。令我印象深刻的是我能够使用.NET做到这一点。你怎么看?谢谢:))
Type t = GetTypeInsideOfObjectByTypeName(o, tableName, out isCoollection);
Type genericListType = typeof(List<>).MakeGenericType(t);
object coll = Activator.CreateInstance(genericListType);
dynamic objectColl = Convert.ChangeType(coll, coll.GetType());
dynamic d = Convert.ChangeType(obj, obj.GetType());
objectColl.Add(d);