DAL 应该是关系模型和领域模型之间的转换层吗?
我想我有一个简单的问题的答案,但我正在寻找一个共鸣板。 DAL 是否应该将来自数据库的任何内容(通过直接 SQL、存储过程、ORM 等)转换为业务层所理解的域实体? 另外,所有域实体都应该由接口定义吗(如果没有别的,为了最小化依赖性)?
Simple question for which I think I have an answer but I am looking for a sounding board. Should the DAL be the one translating whatever comes from the database (be it through straight SQL, stored procedures, ORM, whatever) into Domain Entities as understood by the business layer?
On a separate note, should all Domain Entities be defined by an Interface (if nothing else, to minimize dependencies) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,是的。但我不确定是否有硬性规定。
我认为,不。这可能最终会产生许多没有任何价值的界面。亚格尼。
In my opinion, yes. I'm not sure there is a hard and fast rule though.
In my opinion, no. That may end up in a lot of interfaces that add no value. YAGNI.