I want to delete content of all tables (all entities using Entity Framework 4+). How can this be done?
Thanks, James
|
I want to delete content of all tables (all entities using Entity Framework 4+). How can this be done? Thanks, James |
|||||
|
|
This will perform much, much better than anything involving deleting individual entity objects, assuming the underlying database is MSSQL.
Of course, if your tables have foreign-key relationships, you'll need to set up your list of table names in the proper order so that you clear foreign-key tables before you clear any primary-key tables that they might depend upon. |
|||||||||||||
|
|
Just for lazy ones, code I came up myself when looking for the ansewr:
Short explanation: I do not truncate tables due to lack of permissions, if it’s not a problem for you, feel free to do so. The table __MigrationHistory is ignored by the where statement. UPDATE: After some research I came up with better solution (not as nice but deletes only required columns):
|
||||
|
|
|
Iterate through the tables with a code something like this:
|
||||
|
|