不使用 Skip() 或 Take() 缓存分页 LINQ 结果
我在我的网站中使用 LINQ 来分页数据。我目前正在使用 Skip() 和 Take() 来执行分页。现在我想使用缓存依赖项来缓存数据,这样如果数据发生变化,缓存就会失效。但是,SQL Server 的查询通知不支持 TOP 表达式。是否有其他方法可以使用不生成 TOP 的 LINQ 查询分页数据集?或者另一种方法来缓存这些数据以使其失效?
I am using LINQ for paging data in my website. I am currently using Skip() and Take() to perform the paging. Now I want to cache the data using cache dependencies so that the the cache will invalidate if the data changes. However SQL Server's query notifications don't support the TOP expression. Are there any alternative ways to query a paged set of data with LINQ that doesn't generate TOP? Or another way to cache this data so that it invalidates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
分两遍提取数据:
Pull your data in two passes:
缓存整个结果集,并将 SqlDependancy 设置为该结果集。
从缓存中读取整个集合,然后对其使用“Skip/Take”。
Cache the entire result set, and set the SqlDependancy to that.
Read the entire set from the cache, and then use Skip/Take on that.