断开连接的数据集
DataContext/Entity Model 始终从数据库读取数据。 DataContext/Entity Model 有什么方法可以从 DataSet 读取数据吗?
谢谢
DataContext/Entity Model always read data from Database. is there any way DataContext/Entity Model will read the data from DataSet.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Linq-to-DataSet
Check out Linq-to-DataSet
没有自动方法可以使 LinqToSql 或 EntityFramework 从 DataSet 而不是从数据库读取数据。使用
DataSet
作为某种“断开连接的数据库”对于单个 UnitOfWork 来说是可以的,如果您想在断开连接的情况下将其用作某种数据存储,您应该考虑其他解决方案,例如 SQL Server CE(不能与 L2S 一起使用,但可以与 EF 一起使用)。如果您的场景类似于第一个场景(单个工作单元),您需要将数据手动填充到数据集中,然后可以连续使用 Linq-To-DataSet。
There is no automated way to make LinqToSql or the EntityFramework read data from a DataSet instead of from a Database. Using a
DataSet
as some kind of "disconnected database" is fine for a single UnitOfWork, if you want to use it as some kind of datastore in disconnected scenarios you should consider another solution such as SQL Server CE (which you can't use with L2S but with EF).If your scenario resembles the first one (single Unit of Work) you need to fill the data manually into the dataset and can then use Linq-To-DataSet consecutively.