我正在开发项目,我需要在我们的数据库表中保留监视器,对于任何新的记录插入,我需要在客户端更新它。
为此,我使用SqlDependency
订阅服务代理。还使用SignalR立即更新客户端。
我的问题是:我的订阅仅对一次更改有效,一旦我获得一次更新,不知道如何,我的订阅会自动删除。
以下是订阅数据库以进行更改的代码:
SqlDependency.Start(connectionString);
SubScribeForAttendance();
SqlDependency.Stop(connectionString);
订阅功能:
public void SubScribeForAttendance()
{
// We have selected the entire table as the command, so SQL Server executes this script and sees if there is a change in the result, raise the event
string commandText = @"Select bnr,knrhex From dbo.TableName where bnr > SomeId";
// Start the SQL Dependency
SqlDependency.Start(connectionString);
using (SqlConnection connection = new SqlConnection(connectionString))
{
using (SqlCommand command = new SqlCommand(commandText, connection))
{
connection.Open();
var sqlDependency = new SqlDependency(command);
sqlDependency.OnChange += Dependency_OnBookingChange;
// NOTE: You have to execute the command, or the notification will never fire.
using (command.ExecuteReader())
{
}
}
}
}
答案 0 :(得分:2)
每次触发通知时都必须重新注册sql依赖项,sql依赖项只注册一个通知。
在Dependency_OnBookingChange的最后一次调用SubScribeForAttendance()来重新注册sql依赖
我从这个link
找到了这个解决方案