将列表(从 Web 服务)转换为数据表 C#
convert list (from web service) to datatable c#
我正在调用 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
我正在调用 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