我正在使用 LINQ 在我的网站中分页数据。我目前正在使用 Skip() 和 Take() 来执行分页。现在我想使用缓存依赖项来缓存数据,这样如果数据发生变化,缓存就会失效。但是 SQL Server 的查询通知不支持 TOP 表达式。有没有其他方法可以使用不生成 TOP 的 LINQ 查询分页数据集?或者另一种缓存这些数据使其失效的方法?
问问题
464 次
2 回答
1
缓存整个结果集,并将 SqlDependancy 设置为该结果集。
从缓存中读取整个集合,然后使用 Skip/Take。
于 2010-08-25T01:24:24.843 回答
1
分两次提取数据:
// step1: get the IDs of the items in the current page.
List<int> customerIds = db.Customers
.Where(filter)
.OrderBy(c => c.FirstName)
.ThenBy(c => c.CustomerID)
.Select(c => c.CustomerID)
.Skip(200)
.Take(20)
.ToList();
// step2: get the items for that page
List<Customer> customers = db.Customers
.Where(c => customerIds.Contains(c.CustomerID))
.ToList();
于 2010-08-25T02:41:01.687 回答