5

我正在做一个收藏。我需要从集合中删除一项并使用过滤/删除的集合。

这是我的代码

public class Emp{
  public int Id{get;set;}
  public string Name{get;set;}
}

List<Emp> empList=new List<Emp>();
Emp emp1=new Emp{Id=1, Name="Murali";}
Emp emp2=new Emp{Id=2, Name="Jon";}
empList.Add(emp1);
empList.Add(emp2);

//Now i want to remove emp2 from collection and bind it to grid.
var item=empList.Find(l => l.Id== 2);
empList.Remove(item);

问题是即使在删除该项目后,我的收藏仍然显示计数 2。
可能是什么问题?

编辑:

原始代码

  var Subset = otherEmpList.FindAll(r => r.Name=="Murali");

   if (Subset != null && Subset.Count > 0)
   {
    foreach (Empl remidateItem in Subset )
    {
       Emp removeItem = orginalEmpList.Find(l => l.Id== 
                                          remidateItem.Id);
                    if (removeItem != null)
                    {
                        orginalEmpList.Remove(remidateItem); // issue here

                    }
      }
    }

它工作正常。在实际代码中,我正在删除 remediateItem。remediateItem 是同一类型,但属于不同的集合。

4

5 回答 5

10

您正在传递Remove不在列表中的对象,但您尝试删除的对象是列表中其他对象的副本,这就是它们没有被删除的原因,请使用List.RemoveAll方法传递谓词。

lst.RemoveAll(l => l.Id== 2);

如果您想删除其他一些集合中的许多 id,例如 id 数组

int []ids = new int[3] {1,3,7};
lst.RemoveAll(l => ids.Contains(l.Id))
于 2013-02-02T07:51:29.283 回答
1
int removeIndex = list.FindIndex(l => e.Id== 2);
if( removeIndex != -1 )
{
    list.RemoveAt(removeIndex);
}

试试这可能对你有用

于 2013-02-02T07:46:16.620 回答
1

您粘贴的原始代码可以完美运行。它相应地删除项目。

List<Emp> empList = new List<Emp>();
Emp emp1 = new Emp { Id = 1, Name = "Murali" };
Emp emp2 = new Emp { Id = 2, Name = "Jon" };
empList.Add(emp1);
empList.Add(emp2);

//Now i want to remove emp2 from collection and bind it to grid.
var item = empList.Find(l => l.Id == 2);
empList.Remove(item);
于 2013-02-02T09:03:41.970 回答
0

你写错了你的lambda。应该是这样

var item=empList.Find(l => l.Id== 2);
于 2013-02-02T07:43:06.387 回答
-1

你需要添加这个打击menthod Remove():

orginalEmpList.SaveChanges();

于 2021-09-29T08:13:40.713 回答