If you want to Truncate Data or delete all the data from the table in Entity Framework (.NET 4.5) , you can use the ExecuteSqlCommand defined in the DBContext.Database class .
How to Delete all data from the table(Truncate) in Entity Framework ?
Below is a sample source to demonstrate how to truncate table in Entity Framework.
dbContext.Database.ExecuteSqlCommand("TRUNCATE TABLE tablename");