使用数据关系有什么好处?

发布于 2024-08-06 03:44:44 字数 81 浏览 4 评论 0原文

我想知道与在数据层本身构建关系相比,在 .NET 中使用 DataRelation 有什么优势?或者这很大程度上是开发人员决定将其逻辑放置在哪一层?

I'd like to know what the advantage of using a DataRelation in .NET is, as opposed to crafting the relationship in the data layer itself? Or is this largely a decision by the developer about which tier to place their logic in?

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

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

发布评论

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

评论(1

小兔几 2024-08-13 03:44:44

DataSet(及其各种组件)基本上用作基于表的数据的内存中表示,并且对于允许客户端应用程序在断开连接状态下处理数据最有用。因此,DataRelation 通常不应该代替数据库中定义的数据关系。相反,它应该充当其他地方定义的关系的模拟或表示。

恕我直言,构建系统以便仅在客户端应用程序中以 DataRelation 的形式定义数据关系将是一个坏主意。

A DataSet (and its various components) basically functions as an in-memory representation of table-based data, and is most useful for allowing a client application to work with data in a disconnected state. Therefore, a DataRelation shouldn't normally function in place of a data relation defined in your database; rather, it should function as an emulation or representation of that relationship defined elsewhere.

Architecting your system so that a data relation is defined only in your client application in the form of a DataRelation would be a bad idea, IMHO.

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