我试图制作一个通用的方法来执行查询,我可以传递存储的proc名称和参数(如果有的话)。
执行查询后,结果存储在DataTable中 必须转换为List。
DataTableToList()
是一种扩展方法,也可以这样做。
仅显示相关代码
来电者
var results= dh.ExecuteDataSet<EmployeeModel>("USP_GetEmployeeByID", new Dictionary<string, IConvertible>()
{
{"@ID", 1000}
});
DAL代码
public IEnumerable<T> ExecuteDataSet<T>(string storedProcName, IDictionary<string, IConvertible> parameters = null)
{
var result = db.ExecuteDataSet(q);
DataTable dtResult = result.Tables[0];
var t = dtResult.DataTableToList<T>(); //Compile time error: The type T must be a reference type in order to use it as parameter
return t;
}
扩展方法
public static List<T> DataTableToList<T>(this DataTable table) where T : class, new()
{
try
{
List<T> list = new List<T>();
foreach (var row in table.AsEnumerable())
{
T obj = new T();
foreach (var prop in obj.GetType().GetProperties())
{
try
{
PropertyInfo propertyInfo = obj.GetType().GetProperty(prop.Name);
propertyInfo.SetValue(obj, Convert.ChangeType(row[prop.Name], propertyInfo.PropertyType), null);
}
catch
{
continue;
}
}
list.Add(obj);
}
return list;
}
catch
{
return null;
}
}
问题是扩展方法调用给出了编译时错误
The type T must be a reference type in order to use it as parameter compile time error.
那么对扩展方法进行哪些更改以使其接受泛型作为参数?
答案 0 :(得分:5)
此程序:
public IEnumerable<T> ExecuteDataSet<T>(
string storedProcName,
IDictionary<string, IConvertible> parameters = null)
还需要类型参数。
where T : class, new()
答案 1 :(得分:2)
将where T : class
添加到您的DAL方法中。
编译器需要知道DAL方法中的T
可以满足扩展方法的类型约束