我正在使用 Datatable Extensions 从 Datatable 转换为 List。在这里,当我尝试向普通 List 属性添加一行时,它工作正常。但是当我在列表中使用列表时,我遇到了问题。我无法在属性中设置值。
private static T CreateItemFromRow<T>(DataRow row, IList<PropertyInfo> properties) where T : new()
{
T item = new T();
foreach (var property in properties)
{
if (property.Name.Equals("ProductSpec"))
{
Type t = property.GetType();
// i am getting error when i am trying to do this
property.SetValue(item, ProductSpecIteration(property, row), null);
}
if (row.Table.Columns.Contains(property.Name))
{
property.SetValue(item, row[property.Name] == DBNull.Value?"":row[property.Name], null);
}
}
return item;
}
private static ProductSpec ProductSpecIteration(PropertyInfo property, DataRow row)
{
ProductSpec lstProductSpec = new ProductSpec();
lstProductSpec.product_specs_id = Convert.ToInt64(row["product_specs_id"]);
return lstProductSpec;
}
我一般无法做到这一点。但即使我无法在这个扩展中添加这个?任何人都可以帮助我摆脱这种情况