哪里是在实体框架5 ExecuteStoreCommand方法?(Where is the Exec

2019-08-04 00:44发布

我使用VS2012 EF5,我试图删除使用一些表的所有数据ExecuteStoreCommand ,是这样的:

ctx.ExecuteStoreCommand("TRUNCATE TABLE [" + tableName + "]");

但问题是EF告诉我,方法ExecuteStoreCommand没有找到。 我不明白为什么?

你能告诉我为什么?或者给我一个高性能的解决方案删除表中的所有数据。

Answer 1:

试试这个:

ctx.Database.ExecuteSqlCommand


文章来源: Where is the ExecuteStoreCommand method in Entity Framework 5?