我遇到了SqlCacheDependency的问题,我无法解决这个问题。 当我使用查询通知时,CacheItemRemovedCallback会在我向缓存添加内容时触发(当我使用databaseEntryName和tableName时它会起作用,但这对我来说是钝的)。我检查了http://msdn.microsoft.com/en-us/library/ms181122.aspx大约20次,但我仍然找不到我做错了什么。
我正在使用的代码:
string connString = MsSqlUtil.GetConnectionString();
System.Web.Caching.SqlCacheDependencyAdmin.EnableNotifications(connString);
System.Web.Caching.SqlCacheDependencyAdmin.EnableTableForNotifications(connString, "Product");
SqlDependency.Start(connString);
Product product = ProductProvider.Get(10);
using (SqlConnection connection = new SqlConnection(connString))
{
SqlCommand cmdProduct = new SqlCommand(@"
SET ANSI_NULLS ON
SET ANSI_PADDING ON
SET ANSI_WARNINGS ON
SET CONCAT_NULL_YIELDS_NULL ON
SET QUOTED_IDENTIFIER ON
SET NUMERIC_ROUNDABORT OFF
SET ARITHABORT ON
SET TRANSACTION ISOLATION LEVEL READ COMMITTED
SELECT dbo.Product.ProductId, dbo.Product.Name FROM dbo.Product WHERE dbo.Product.ProductId = 10", connection);
SqlCacheDependency myProductDependency = new SqlCacheDependency(cmdProduct);
if (connection.State == ConnectionState.Closed)
{
connection.Open();
}
using (SqlDataReader reader = cmdProduct.ExecuteReader())
{
while (reader.Read())
{
}
}
HttpContext.Current.Cache.Add("Product:10", product, myProductDependency, Cache.NoAbsoluteExpiration, Cache.NoSlidingExpiration, CacheItemPriority.Normal, OnRemove);
}
//Callback
public static void OnRemove(string key, object cacheItem, System.Web.Caching.CacheItemRemovedReason reason)
{
//this fires directly and the reason is always DependencyChanged however nothing has changed in the database, weird!
}
我理解,由于http://msdn.microsoft.com/en-us/library/ms181122.aspx告诉我“如果没有正确设置这些选项或隔离级别,则会在执行SELECT语句后立即触发通知,因此查询必须有一些错误。”但是我无法弄清楚出了什么问题。 ProductId列的类型为int,Name为nvarchar(50)
答案 0 :(得分:1)
在SQL事件探查器中观察QN:Subscription Event Class。运行您的测试用例。将触发EventSubClass
值已触发的事件触发事件。 TextData
将完全包含订阅通知Info,Source和Type(我认为它将位于EventText
XML元素中)。
通过这种方式,您将确切地知道您的查询是如何不符合的,并且您可以相应地解决问题。