DataSet/DataTableAdapter是否可以认为是DAL?

发布于 2024-12-20 04:50:23 字数 105 浏览 1 评论 0原文

我正在做一个三层架构的系统。我有 2 个名为 DAL 和 BLL 的文件夹。我可以将 Dataset.xsd 文件放在 DAL 文件夹中并将其视为该数据访问层吗?或者根据现实世界的情况这是错误的?

I am doing a system with 3 tier architecture. I have 2 folder named DAL and BLL. Can I put my Dataset.xsd file in DAL folder and consider it as a that data access layer. Or is it wrong according to real world situation?

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

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

发布评论

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

评论(1

捎一片雪花 2024-12-27 04:50:23

DAL 是直接处理数据存储和检索的任何东西。在您的情况下,DataTableAdapter 直接处理数据层,因此被视为 DAL - 您是对的。
BLL 将是您希望在 DAL 之上抽象的任何业务规则或附加功能。

DAL is anything dealing directly with the data storage and retrieval. In your case, the DataTableAdapter is dealing directly with the data layer and thus is considered DAL - you are correct.
BLL will be any business rules or additional functionality that you wish to abstract above the DAL.

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