可以在没有后备存储的情况下在实体框架中创建内存数据库吗?
可以将 EF 仅与内存中的数据库一起使用,而该数据库不会像 DataSet 那样持久保存。仅当应用程序运行时才需要数据库中的信息,并且不需要保留。我已经搜索和研究但找不到答案。
It is possible to use EF with only an in memory DB that is not persisted in anyway kinda like what DataSet does. The information in the DB would only be required while the app is running and would not need to be retained. I have searched and studied but can’t find the answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在-具有实体框架的内存数据库。请参阅这些主题。 http://sqlite.phxsoftware.com/forums/t/2604.aspx , 首先与内存数据库集成测试实体框架代码
You can use SQLite(http://www.sqlite.org/inmemorydb.html) in-memory database with entity framework. See these threads. http://sqlite.phxsoftware.com/forums/t/2604.aspx , Integration Testing Entity Framework code first with in-memory database