i use this code for delete records in entity framework(several record)
var tag = from t in objLib.TagsField where t.Book_ID_FK == id select t;
foreach (var t in tag)
{
objLib.TagsField.Context.DeleteObject(t);
objLib.SaveChanges();
}
how i delete it without use for each this code ( it Takes time!!)