如果我在数据集中有单个数据表,下面的逻辑将正常工作但如果我在数据集中有两个表,我们如何修改下面的逻辑以使其工作。
var empList = ds.Tables[0].AsEnumerable().Select(dataRow => new Employee{Name = dataRow.Field<string>("Name")}.ToList();
假设我有一个Employee类和一个嵌套对象..
Public class Employee
{
public string name;
public string ID;
public Jobdetails job;
}
Public class Jobdetails
{
public string role;
public string salary;
}
我必须检查数据集中是否有两个表。如果存在两个表,我必须将第一个表(它将具有员工姓名和ID)加载到Employee类和第二个表中(它将具有角色和薪水栏)到员工班的工作对象。
如果只有一个表,我必须将第一个表加载到employee对象并将jobdetails对象保持为null,因为没有第二个表。
请告知建议实现上述方案的最佳方法是什么?
答案 0 :(得分:0)
public static DataTable ConvertToDatatable<T>(this IList<T> data)
{
PropertyDescriptorCollection props =
TypeDescriptor.GetProperties(typeof(T));
DataTable table = new DataTable();
for (int i = 0; i < props.Count; i++)
{
PropertyDescriptor prop = props[i];
table.Columns.Add(prop.Name, prop.PropertyType);
}
object[] values = new object[props.Count];
foreach (T item in data)
{
for (int i = 0; i < values.Length; i++)
{
values[i] = props[i].GetValue(item);
}
table.Rows.Add(values);
}
return table;
}
DataTable dtList = ConvertToDatatable(request.Members);