Entity Framework delete a number of records
using (Galway__Entities db = new Galway__Entities())
{
DateTime RemovableDate = new DateTime();
List<PROJ_ACCS_StockControl_DeletedPLURecord> DeletedPLURecords = db.PROJ_ACCS_StockControl_DeletedPLURecord.Where(x => x.TimeStamp <= RemovableDate).ToList();
db.??????
//so I delete the list all at once or use a foreach and run round each record?
//how do I delete each singular record if this is the case then.
}