我试图弄清楚如何使用泛型从查找表中选择值,并在运行时将实体名称作为字符串传递.这是我到目前为止所拥有的.我遇到的问题是“var codes = Select();”线.你可以猜到,编译器不满意并给我一个错误:classType是一个变量,但用作一个类型.我不知道该怎么做或如何解决它.我无法对接口或类名进行硬编码,因为在解析字符串之前我不知道代码表的签名.任何指导将不胜感激!
public void GetTableNameObject(string TableName)
{
dynamic classType = Activator.CreateInstance(Type.GetType(TypeName));
var codes = Select<classType>();
}
public IQueryable<TItem> Select<TItem>() where TItem : class, new()
{
PropertyInfo property = GetDbSet(typeof(TItem));
DbSet<TItem> set = property.GetValue(_context, null) as DbSet<TItem>;
return set;
}
private PropertyInfo GetDbSet(Type itemType)
{
var properties = typeof(CodeTableContext).GetProperties().Where(item => item.PropertyType.Equals(typeof(DbSet<>).MakeGenericType(itemType)));
return properties.First();
}
最佳答案 是的,这是因为classType是一个动态变量,泛型方法类型T必须在编译时关闭,并且不能保持打开,因为类型在编译时自行解析.
在您的情况下,如前所述,classType是一个动态变量,只能在运行时解析,因此您无法将其作为类型传递给泛型方法,因为编译器无法在编译时解析它.
您可能希望将Reflection用于此目的并查看此帖子How do I use reflection to call a generic method?.
(或)而不是动态类型,尝试将其转换为任何基类型(不确定,因为不知道您的类层次结构)
IMyBase classType = Activator.CreateInstance(Type.GetType(TypeName)) as IMyBase;