0

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?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Gauri K.
  • 79
  • 1
  • 1
  • 10

1 Answers1

2
context.Entities.DeleteAllOnSubmit(dc.Entities);
Ashok Damani
  • 3,896
  • 4
  • 30
  • 48