Eliminar todas las filas de la tabla MVC

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