WPF - 使用 ObservableCollection 和 linq-2-sql 时提交更改的正确方法

发布于 2024-09-16 15:19:42 字数 189 浏览 7 评论 0原文

如果我的所有 wpf 控件都绑定到 ObservableCollections 并且我使用 linq-2-sql 来填充这些集合,那么每当更新这些对象的属性时提交更改的正确方法是什么?

目前我正在手动调用 DataClassesDataContext.SubmitChanges() ,这有点乏味。有没有办法自动执行此操作,这样我就不必到处打电话?

If all of my wpf controls bind to ObservableCollections and I am using linq-2-sql to populate these collections, what is the correct way to commit changes whenever properties of these objects are updated?

Currently I am calling DataClassesDataContext.SubmitChanges() manually, which is a bit tedious. Is there a way to do this automatically, so I don't have to have these calls all over the place?

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

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

发布评论

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

评论(1

来日方长 2024-09-23 15:19:42

通常,当用户单击给定表单上的“保存”或“确定”按钮时,您只需提交更改。

每次更改时都访问数据库听起来有点矫枉过正,但我​​不知道您的特定应用程序的详细信息。

Typically you'd just commit the changes when the user clicks a "Save" or "OK" button on a given form.

Going to the DB on every change sounds like overkill, but I don't know the details of your particular application.

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