我有通用列表...我正在尝试将其转换为数据表。
我正在使用下面的代码..
private DataTable ToDataTable<T>(List<T> items)
{
var tb = new DataTable(typeof(T).Name);
PropertyInfo[] props = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance);
foreach (PropertyInfo prop in props)
{
Type t = GetCoreType(prop.PropertyType);
tb.Columns.Add(prop.Name, t);
}
foreach (T item in items)
{
var values = new object[props.Length];
for (int i = 0; i < props.Length; i++)
{
values[i] = props[i].GetValue(item, null);
}
tb.Rows.Add(values);
}
return tb;
}
我需要在该数据表中添加另一列,例如StatusText
。
该数据表中已经有一个名为 的列Status
。
如果此列为 0StatusText
则应为Active
,否则为 1StatusText
则为Inactive
就像我的代码当前返回下表一样...
Id Name Status
------------------
1 Test 1
2 Test1 0
3 Test2 0
但是,我怎样才能生成如下表?
Id Name Status StatusText
------------------------------
1 Test 1 InActive
2 Test1 0 Active
3 Test2 0 Active