2017-06-29 81 views
0

我有实体如下。我如何将DataTable转换为列表{对象,列表{对象}} Linq

namespace Entity 
{ 
    public class MasterMenu 
    { 
     public MasterMenuParent MasterMenuParent; 
     public List<MasterMenuChildOfParent> MasterMenuChildOfParent; 
    } 

    public class MasterMenuParent 
    { 
     public string Id { get; set; } 
     public string Name { get; set; } 
    } 

    public class MasterMenuChildOfParent 
    { 
     public string Id { get; set; } 
     public string Name { get; set; } 
     public string ParentId { get; set; } //It's a foreign key that link to MasterMenuParent.Id 
    } 
} 

我查询数据库中的数据并转换为实体。 对于getDataMasterMenu1()我使用两个循环。 对于getDataMasterMenu2()我使用了一个Loop和linq。 对于getDataMasterMenu3()我只想使用linq,但我不知道该怎么做,这有可能吗?

using Entity; 
public partial class Test : System.Web.UI.Page 
{ 
    protected void Page_Load(object sender, EventArgs e) 
    { 
     List<MasterMenu> list1 = getDataMasterMenu2(); 
     List<MasterMenu> list2 = getDataMasterMenu2(); 
     List<MasterMenu> list3 = getDataMasterMenu3(); 
    } 

    //Using two Loop 
    private List<MasterMenu> getDataMasterMenu1() 
    { 
     List<MasterMenu> result = new List<MasterMenu>(); 
     List<MasterMenuChildOfParent> tempMasterMenuChildOfParent = new List<MasterMenuChildOfParent>(); 
     DataTable dtMasterMenuParent = new DataTable(); //Assume: I already query data from database and then load to datatable that has field: ID, NAME 
     DataTable dtMasterMenuChild = new DataTable(); //Assume: I already query data from database and then load to datatable that has field: ID, NAME, PARENT_ID 
     for (int i1 = 0; i1 < dtMasterMenuParent.Rows.Count; i1++) 
     { 
      //Select Child Of Parent 
      DataTable dtMasterMenuChildOfParent = (from DataRow dr in dtMasterMenuChild.Rows where dr["PARENT_ID"].Equals(dtMasterMenuParent.Rows[i1]["ID"]) select dr).CopyToDataTable(); 
      for (int i2 = 0; i2 < dtMasterMenuChildOfParent.Rows.Count; i2++) 
      { 
       tempMasterMenuChildOfParent.Add(new MasterMenuChildOfParent 
       { 
        Id = dtMasterMenuChildOfParent.Rows[i2].Field<string>("ID"), 
        Name = dtMasterMenuChildOfParent.Rows[i2].Field<string>("NAME"), 
        ParentId = dtMasterMenuChildOfParent.Rows[i2].Field<string>("PARENT_ID"), 
       }); 
      } 

      result.Add(new MasterMenu 
      { 
       MasterMenuParent = (new MasterMenuParent 
       { 
        Id = dtMasterMenuParent.Rows[i1].Field<string>("ID"), 
        Name = dtMasterMenuParent.Rows[i1].Field<string>("NAME") 
       }), 
       MasterMenuChildOfParent = tempMasterMenuChildOfParent 
      }); 
     } 
     return result; 
    } 

    //Using one Loop and linq 
    private List<MasterMenu> getDataMasterMenu2() 
    { 
     List<MasterMenu> result = new List<MasterMenu>(); 
     DataTable dtMasterMenuParent = new DataTable(); //Assume: I already query data from database and then load to datatable that has field: ID, NAME 
     DataTable dtMasterMenuChild = new DataTable(); //Assume: I already query data from database and then load to datatable that has field: ID, NAME, PARENT_ID 
     for (int i1 = 0; i1 < dtMasterMenuParent.Rows.Count; i1++) 
     { 
      //Select Child Of Parent 
      DataTable dtMasterMenuChildOfParent = (from DataRow dr in dtMasterMenuChild.Rows where dr["PARENT_ID"].Equals(dtMasterMenuParent.Rows[i1]["ID"]) select dr).CopyToDataTable(); 
      result.Add(new MasterMenu 
      { 
       MasterMenuParent = (new MasterMenuParent 
       { 
        Id = dtMasterMenuParent.Rows[i1].Field<string>("ID"), 
        Name = dtMasterMenuParent.Rows[i1].Field<string>("NAME") 
       }), 
       MasterMenuChildOfParent = dtMenuChildOfParent.AsEnumerable().Select(row => 
       new MasterMenuChildOfParent 
       { 
        Id = row.Field<string>("ID"), 
        Name = row.Field<string>("NAME"), 
        ParentId = row.Field<string>("PARENT_ID") 
       }).ToList() 
      }); 
     } 
     return result; 
    } 

    //Using linq 
    private List<MasterMenu> getDataMasterMenu3() 
    { 
     List<MasterMenu> result = new List<MasterMenu>(); 
     DataTable dtMasterMenuParent = new DataTable(); //Assume: I already query data from database and then load to datatable that has field: ID, NAME 
     DataTable dtMasterMenuChild = new DataTable(); //Assume: I already query data from database and then load to datatable that has field: ID, NAME, PARENT_ID 

     //How can I Convert DataTable to List{Object, List{Object}} by Linq 

     return result; 
    } 
} 
+0

你为什么不使用这个的ORM?所有这些代码都可以用singel'dbContext.MasterMenu.Include(m => m.MasterMenuChildOfParent).ToList()'代替。通过使用DataTables,您也​​使用了两倍的内存。 –

+0

谢谢Mr.Panagiotis Kanavos。我将学习ORM。 – akkapolk

+0

子表中有一个额外的列。所以如果你克隆父表并添加ParentID列,你可以用一个linq来完成。 – jdweng

回答

3

所有你需要做的就是你的窝LINQ:

private List<MasterMenu> getDataMasterMenu3() { 
    var dtMasterMenuParent = new DataTable(); 
    var dtMasterMenuChild = new DataTable(); 

    var result = (from p in dtMasterMenuParent.AsEnumerable() 
      join c in dtMasterMenuChild.AsEnumerable() on p.Field<string>("ID") equals c.Field<string>("PARENT_ID") into cj 
      select new MasterMenu { 
       MasterMenuParent = new MasterMenuParent { Id = p.Field<string>("ID"), Name = p.Field<string>("NAME") }, 
       MasterMenuChildOfParent = cj.Select(c => new MasterMenuChildOfParent { 
        Id = c.Field<string>("ID"), 
        Name = c.Field<string>("NAME"), 
        ParentId = c.Field<string>("PARENT_ID") 
       }).ToList() 
      }).ToList(); 

    return result; 
} 
+0

这是我的预期。非常感谢你。 – akkapolk

相关问题