I want to delete all records from my SQL Server table. I use LINQ to EF5. Is there anything I can do to do that?
Asked
Active
Viewed 193 times
1 Answers
2
context.Entities.DeleteAllOnSubmit(dc.Entities);

Ashok Damani
- 3,896
- 4
- 30
- 48
-
Does that DELETE all the rows, or TRUNCATE? – DOK Jul 23 '13 at 13:49