我想我正確地把我的問題:)從LINQ集合中刪除一個項目
我正在查詢數據庫使用LINQ來檢索一些數據。請找到下面的代碼。
var leadtasktype = _context.LeadTypeTaskTypes.Where(l => l.LeadTypeId == item.Value);
foreach(LeadTypeTaskType l in leadtasktype){
if (l.TaskTypeId == 21)
{
//I need to remove an item which has the tasktype id 21
}
}
正如我在評論中提到的,我需要從基於我if
條件leadtasktype刪除項目。我該怎麼做呢?
看看這個答案: http://stackoverflow.com/questions/853526/using-linq-to-remove-objects-within-a-listt –