将列表(从web服务)转换为可数据的c#
本文关键字:数据 转换 列表 web 服务 | 更新日期: 2023-09-27 18:13:26
我正在调用WCF服务,它为我提供了在BAL中具有指定字段名称的客户列表。我按照许多论坛上的指示创建了一个方法ToDataTable
(对于这个实例可能是错误的)。我使用它将列表转换为数据表,但我面临着一个挑战。错误提示"不能隐式转换类型‘System.Data.DataTable to 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;
}
如果需要更多的代码示例,请告诉我
你的反射ToDataTable代码工作正常:
_ListType = ToDataTable(customer); //the problem occurs here
问题是_ListType
和DataTable
的类型不同。
你应该把这行改成
DataTable tbl = ToDataTable(customer);//Your method returns DataTable