我有一个看起来像这样的通用函数:
public static class ExcelImport
{
public static List<T> Test<T>(string filename, string worksheetname) where T : class
{
return new List<T>(ExcelImport.Parse<T>(filename, worksheetname));
}
...
}
如果我知道我将在什么类型的对象上执行测试功能,我可以很容易地这样调用它(例如):
List<OEE.Data.Equipment> result = ExcelImport.Test<OEE.Data.Equipment>(fileName.Text, worksheetName.Text);
但事实是,Test 可以应用于 OEE.Data 命名空间的任何类,并且用户将在启动 Test 函数之前在组合框中选择正确的类。
我可以使用开关为每个组合框值链接不同的调用,但这意味着我必须在任何时候将类添加到 OEE.Data 时都有新的案例。那么,我怎样才能动态地给出类型呢?下面的代码不起作用:
List<Type.GetType("OEE.Data.Equipment")> result = ExcelImport.Test<Type.GetType("OEE.Data.Equipment")>(fileName.Text, worksheetName.Text);
提前致谢!
西蒙
编辑:在回答 Dishold 的回复下的评论时,这是我调用 Test 方法背后的代码:
public static List<T> Test<T>(string filename, string worksheetname) where T : class
{
return new List<T>(ExcelImport.Parse<T>(filename, worksheetname));
}
private static IEnumerable<K> Parse<K>(string filename, string worksheetname) where K : class
{
IEnumerable<K> list = new List<K>();
string connectionString = string.Format("provider=Microsoft.Jet.OLEDB.4.0; data source={0};Extended Properties=Excel 8.0;", filename);
string query = string.Format("SELECT * FROM [{0}]", worksheetname);
DataSet data = new DataSet();
using (OleDbConnection con = new OleDbConnection(connectionString))
{
con.Open();
OleDbDataAdapter adapter = new OleDbDataAdapter(query, con);
adapter.Fill(data);
list = PopulateData<K>(data);
}
return list;
}
private static List<T> PopulateData<T>(DataSet data) where T : class
{
List<T> dtos = new List<T>();
foreach (DataRow row in data.Tables[0].Rows)
{
T dto = Activator.CreateInstance<T>();
PopulateFieldsFromDataRows(row, dto);
dtos.Add(dto);
}
return dtos;
}
新问题现在出现在方法 PopulateData 中,因为我无法像这里一样创建 System.RuntimeType 的实例:
T dto = Activator.CreateInstance<T>();