使用 EF 4 C#。我有一个匿名列表。想从匿名列表中删除项目
Anonymous list :
var temp=from p in contex.students select p;//it’s a complex query,for now just use simple select
foreach(var item in temp)
{
if(item.StudentID)//if satisfy some condition then want to remove this student information from anonymous list
{
temp=temp.where(p=>studentID!=item.studentID);
}
}
上面的语法对我不起作用。我只想根据几个条件删除项目。需要帮助如何从匿名列表中删除项目。
如果有任何疑问请提前询问。谢谢。