我有一个函数,可以将任何类型的list<>
传递给它。然后,该函数确定列表的类型。我的问题是,我传入了一个列表,然后将其转换,但是随后当我将列表分配给传入的列表时,我得到了一个错误:
Cannot convert type 'System.Collection.Generic.List<ADMPortal_2.Modles.ProductionPending>' to 'System.Collections.List<T>
CODE
数据库调用,它将结果返回到数据表中,然后将其转换为列表类型。此函数必须能够返回任何类型的列表,例如列表,列表等。
string cnnStr = ConfigurationManager.ConnectionStrings["conChdbd1"].ConnectionString;
OracleConnection cnn;
OracleDataReader dr;
public List<T> Execute<T>(string strSql, List<T> list)
{
using (OracleConnection conn = new OracleConnection(cnnStr))
{
using (OracleCommand objCommand = new OracleCommand(strSql, conn))
{
objCommand.CommandType = CommandType.Text;
DataTable dt = new DataTable();
OracleDataAdapter adp = new OracleDataAdapter(objCommand);
conn.Open();
adp.Fill(dt);
if (dt != null)
{
list = ConvertToList(dt, list).ToList();
}
}
}
return list;
}
这里分配给列表
时发生错误 public List<T> ConvertToList<T>(DataTable dt, List<T> list)
{
if (list.GetType() == typeof(List<ProductionPending>))
{
list = ConvertToProductionPending(dt, (list as List<ProductionPending>));
}
else if (list.GetType() == typeof(List<ProductionRecent>))
{
list = ConvertToProductionRecent(dt, (list as List<ProductionRecent>));
}
else if (list.GetType() == typeof(List<MirrorDeployments>))
{
list = ConvertToMirror(dt, (list as List<MirrorDeployments>));
}
return list;
}
这里有转换功能
private List<ProductionPending> ConvertToProductionPending(DataTable dt, List<ProductionPending> list)
{
// Convert here
return list;
}
private List<ProductionRecent> ConvertToProductionRecent(DataTable dt, List<ProductionRecent> list)
{
// Convert here
return list;
}
private List<MirrorDeployments> ConvertToMirror(DataTable dt, List<MirrorDeployments> list)
{
// Convert here
return list;
}
答案 0 :(得分:1)
您应该在方法调用中指定您的类型。
像这样
objCommand.CommandType = CommandType.Text;
DataTable dt = new DataTable();
OracleDataAdapter adp = new OracleDataAdapter(objCommand);
conn.Open();
adp.Fill(dt);
if (dt != null)
{
//Here i cahnged the code
list = ConvertToList<T>(dt, list);
}
答案 1 :(得分:0)
如果我理解正确,您只想确定要根据日期表结果集填写的列表。因此,在调用该函数时,为什么不添加确定从何处调用该函数的(help)-parameter,并且取决于此变量,该函数将知道要使用的列表。