Exclua todas as linhas da tabela LINQ

context.Entity.RemoveRange(context.Entity.ToList());
context.SaveChanges();
Yibambe