我使用VS2012 EF5,我试图删除使用一些表的所有数据ExecuteStoreCommand
,是这样的:
ctx.ExecuteStoreCommand("TRUNCATE TABLE [" + tableName + "]");
但问题是EF告诉我,方法ExecuteStoreCommand没有找到。 我不明白为什么?
你能告诉我为什么?或者给我一个高性能的解决方案删除表中的所有数据。
我使用VS2012 EF5,我试图删除使用一些表的所有数据ExecuteStoreCommand
,是这样的:
ctx.ExecuteStoreCommand("TRUNCATE TABLE [" + tableName + "]");
但问题是EF告诉我,方法ExecuteStoreCommand没有找到。 我不明白为什么?
你能告诉我为什么?或者给我一个高性能的解决方案删除表中的所有数据。
试试这个:
ctx.Database.ExecuteSqlCommand