How I can quickly remove all rows in table using Entity Framework?
I am currently using:
var rows = from o in dataDb.Table select o; forea
Make sure when you are trying to delete parent all children will cascade on delete. Or children have nullable foreign key.