我正在尝试SQLDependency Caching
在我的应用程序中使用查询通知ASP.NET
。我按照这些步骤设置 SQLDependency Caching。我能够db
成功设置。但是,当我运行我的应用程序时,我收到以下错误。
Cannot find the specified user 'owner'.
Cannot find the queue
SqlQueryNotificationService-6c3ae823-a678-4ed2-8b97-561b5f2561ee',
because it does not exist or you do not have permission.
Invalid object name
SqlQueryNotificationService-6c3ae823-a678-4ed2-8b97-561b5f2561ee'.
全球代码.asax
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
System.Data.SqlClient.SqlDependency.Start(ConfigurationManager.ConnectionStrings["McdConn"].ToString());
}
我试图谷歌解决方案,但我无法获得任何帮助。
谁能帮我这个?
我错过了什么吗?