我正在调用WCF服务,该服务为我提供了BAL中具有指定字段名称的客户列表。我按照许多论坛上的指示创建了一个方法ToDataTable
(对于这个实例可能是错误的)。我使用它将列表转换为数据表,但我面临着一个挑战。该错误表示“无法将类型&System; System.Data.DataTable隐式转换为mHotRes.DesktopPresentation.ListFrm.ListType'”。
以下是我的绑定数据代码:
private void BindData()
{
try
{
switch (_ListType)
{
case ListType.Customers:
IHotRes res = new MHotServiceProvider().Service;
List<Customer> customer = res.CustomerSaveDataList();
_ListType = ToDataTable(customer); //the problem occurs here
break;
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
以下是ToDataTable
方法的代码:
public static DataTable ToDataTable<T>(List<T> items)
{
DataTable dataTable = new DataTable(typeof(T).Name);
//Get all the properties
PropertyInfo[] Props = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance);
foreach (PropertyInfo prop in Props)
{
//Setting column names as Property names
dataTable.Columns.Add(prop.Name);
}
foreach (T item in items)
{
var values = new object[Props.Length];
for (int i = 0; i < Props.Length; i++)
{
//inserting property values to datatable rows
values[i] = Props[i].GetValue(item, null);
}
dataTable.Rows.Add(values);
}
//put a breakpoint here and check datatable
return dataTable;
}
如果需要更多代码示例,请与我们联系。
答案 0 :(得分:1)
您的反射ToDataTable代码工作正常:
_ListType = ToDataTable(customer); //the problem occurs here
问题在于_ListType
与DataTable
的类型不同。
您应该将行更改为
DataTable tbl = ToDataTable(customer);//Your method returns DataTable