Eliminar todas las filas de la tabla Linq

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