表数据更新 C# 上的捕获/引发事件

发布于 2024-09-01 08:18:24 字数 213 浏览 3 评论 0原文

我有 24/7 服务,可以在 Sql Server 中保存充电、路由等设置(配置数据)。一旦启动,它就会使用 Linq2SQL 从表中加载数据,并在所有应用程序中使用该数据。 我们需要一个解决方案来更新表中的设置数据而无需重新启动应用程序。所以我感兴趣的是是否可以捕获/确定表已更新,以便我可以刷新应用程序中的设置数据。我的意思是,当表上有任何删除、更新或插入时,是否可能会引发一些事件。

谢谢。

I have 24/7 service which keeps setup (configuration data) for charging, routing and etc in the Sql Server. Once it is started it loads the data from table using Linq2SQL and use the data through all the application.
And we need a solution to update the setup data in the table without restarting the application. So I am interested is it possible to catch/determine that the table was updated so I can refresh the setup data in the application. I mean is it possible to have events which will raise when there is any delete, update or insert on the table.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光沙漏 2024-09-08 08:18:24

您正在寻找 SqlDependency 类

You're looking for the SqlDependency class.

白昼 2024-09-08 08:18:24

SQL Server有@@ROWCOUNT函数,它会告诉你有多少行受到影响。不确定如何从 LINQ 获取它

我的意思是可以举办活动吗
当有任何情况时会升高
在表上删除、更新或插入。

在数据库方面,这可以通过触发器来完成

SQL Server has the @@ROWCOUNT function, it will tell you how many rows were affected. Not sure how you would get to it from LINQ

I mean is it possible to have events
which will raise when there is any
delete, update or insert on the table.

On the database side this can be accomplished with a trigger

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文