1

我正在调用 WCF 服务,它为我提供了 BAL 中具有指定字段名称的客户列表。我ToDataTable按照许多论坛上的说明创建了一个方法(对于这种情况可能是错误的)。我使用它将列表转换为数据表,但我面临着一个挑战。错误显示“无法将类型'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;
    }

如果需要更多代码示例,请告诉我。

4

1 回答 1

1

您的反射 ToDataTable 代码工作正常:

_ListType = ToDataTable(customer); //the problem occurs here

问题是 与_ListType具有不同的类型DataTable

您应该将行更改为

DataTable tbl = ToDataTable(customer);//Your method returns DataTable
于 2016-10-18T10:32:56.973 回答