我试图通过避免多个foreach循环来完成此任务来压缩我的代码。我有一个由表A填充的列表框。我需要将这些值与表B进行比较以填充另一个列表。
表A与表B有1对多的关系,虽然我的解决方案暂时有效,但它使用了相当多的内存,所以我需要压缩它。
List<int> listProj = new List<int>();
var _tableB = from t in TableB
where t.StatID == 1 || t.StatID == 2
select p.ID;
var _tableA = from ListItem n in lstTableA.Items
where _tableB.Contains(int.Parse(n.Value)) && n.Selected == true
select n;
foreach (ListItem i in _tableA)
{
int affID = Convert.ToInt32(i.Value);
if (TableB.Where(t => t.ID == affID && t.StatID == 1 || t.StatID == 2).Any()
{
foreach(var item in TableB.Where(t => t.ID == affID && t.StatID == 1 || t.StatID == 2)
{
int pID = Convert.ToInt32(item.pID);
listProject.Add(projID);
}
}
}
主要问题是这两个循环正在循环通过相当多的记录,导致内存泄漏。我觉得有一种方法可以同时获取多个记录并将它们添加到列表中,因此表A和表B之间存在一对多的关系。
答案 0 :(得分:0)
我认为这会给你与上面整个代码相同的结果,除非我在你的程序逻辑上犯了错误。
这将返回项目ID:
List<int> listProj = (from t in TableB
where (from n in lstTableA.Items.Cast<ListItem>().ToList()
where n.Selected == true
select n).Any(g => int.Parse(g.Value) == t.ID)
&& (t.StatID == 1 || t.StatID == 2)
select t.pID).ToList();