当我们更改 DataGrid 内容时更新数据库中的表

发布于 2024-11-03 04:06:42 字数 250 浏览 1 评论 0原文

您好,我正在 WPF 中开发一个应用程序,该应用程序将具有分页记录(我自己根据过滤器或用户希望显示的每页记录数进行分页)。

所以我从来没有认真使用过 DataGrid,我要问的是,当我们使用 DataGrid 来更新数据库中的表时,最好的方法和更好的策略是什么?

我们检测已更改的行,或者我们更新数据库中的整个表,什么是更好的方法?

因为用户可以更改一行,然后更改其他行,想象一下用户更改 50 行,应用程序将必须与数据库连接 50 次?

Hi i am developing an App in WPF who will have paginated records (i am doing the pagination myself depending on the filters or in the number of records per page the user wants to be shown).

So i have never worked serious with DataGrids and what i am asking is, what is the best approach and better politic when we work with a DataGrid to update the Table in the DB?

We detect the row who have been changed, or we update the whole Table in the DB, what is the better way?

Because the user can change one row, and then other, and imagine the user changes 50 rows, the App will have to connect 50 Times with the DB?

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

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

发布评论

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

评论(1

金橙橙 2024-11-10 04:06:42

工作单元可能是这个问题最常见的基础设施解决方案,基本上它存储应用于数据的更改,并在准备好后在数据库的事务中执行它们。有许多 ORM 映射器,例如 实体框架nHibernate 已经为你做到了这一点,所以我从那里开始。

编辑

请参阅示例从您的评论听起来,您需要编写自己的版本,但基本上您构建了一个应该发生的插入、更新、删除的列表,并在事务中执行它们,首先插入,然后更新,然后删除,但我建议你看在像我上面描述的那样的 ORM 中,它们已经具有此功能。

Unit of work is probably the most common infrastructure solution to this problem, basically it stores the changes applied to the data and when ready executes them in a transaction to the database. There are many ORM mappers like Entity Framework or nHibernate that already do this for you, so id start there.

EDIT

See this example implementation as it sounds like from your comments yould need to write your own version, but basically you build a list of inserts, updates, deletes that should happen and execute them all in a trasaction, first inserts, then updates, then deletes but Id recommend you look at an ORM like the ones i described above they already have this as a feature.

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