using (var context = new JasminEntities())
{
var expType = (from o in context.tblExpTypes where o.Id == lvExpType.FocusedItem.Text select o).Single();
context.tblExpTypes.DeleteObject(expType);
context.SaveChanges();
}
我有上面的代码,我只需要将 context.tblExpTypes 作为参数传递,因为在我的项目中有许多表单需要删除任务,我如何作为参数传递,然后在函数中检查要删除的对象集?