我正在尝试将通用集合(列表)转换为数据表。

// Sorry about indentation
public class CollectionHelper
{
private CollectionHelper()
{
}

// this is the method I have been using
public static DataTable ConvertTo<T>(IList<T> list)
{
    DataTable table = CreateTable<T>();
    Type entityType = typeof(T);
    PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(entityType);

    foreach (T item in list)
    {
        DataRow row = table.NewRow();

        foreach (PropertyDescriptor prop in properties)
        {
            row[prop.Name] = prop.GetValue(item);
        }

        table.Rows.Add(row);
    }

    return table;
}    

public static DataTable CreateTable<T>()
{
    Type entityType = typeof(T);
    DataTable table = new DataTable(entityType.Name);
    PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(entityType);

    foreach (PropertyDescriptor prop in properties)
    {
        // HERE IS WHERE THE ERROR IS THROWN FOR NULLABLE TYPES
        table.Columns.Add(prop.Name, prop.PropertyType);
    }

    return table;
}
}

我的问题是,当我将 MySimpleClass 的属性之一更改为可为空类型时,出现以下错误:

DataSet does not support System.Nullable<>.

如何使用类中的可空属性/字段来执行此操作?

答案

然后大概您需要将它们提升为不可为空的形式,使用Nullable.GetUnderlyingType,或许还可以改变一些null价值观DbNull.Value

将分配更改为:

row[prop.Name] = prop.GetValue(item) ?? DBNull.Value;

添加列时:

table.Columns.Add(prop.Name, Nullable.GetUnderlyingType(
            prop.PropertyType) ?? prop.PropertyType);

它有效。 ??是空合并运算符;

来自: stackoverflow.com