Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个可以从 C# .NET 程序的多个实例更新的数据库。我希望在表中的行发生更改时通知每个程序。
一个明显(但可能完全错误)的方法可能是在 .NET 程序中使用 SQL Server 中的 CLR 存储触发器注册回调函数,以便在触发器触发时调用它。
这是正确/可能的方式,还是有更好的选择?
谢谢
您可以使用SqlDependency来获取通知。