在实体框架 4 中删除数据库数据的最有效方法?
对于集成测试,我需要擦除数据库中的所有数据信息。 我正在使用实体框架 4 最有效的方法是什么? 如果每次向模型添加新类时不需要指定表或类名称,那就太好了。
谢谢!
For integration testing I need to wipe all data information in a database.
I'm using Entity Framework 4
What's the most efficient way?
Would be nice if I don't need to specify table or class names every time I add a new class to the model.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
删除数据库数据的最有效方法是删除所有表并重新创建所有表。
Most efficient way to delete database data is to drop all tables and recreate all tables.
这可能不是最快的,但却是最简单的。它甚至会清除您的连接池:
This may not be the fastest, but it is the simplest. It even clears your connection pool: