作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在阅读有关的书的域驱动设计的书埃里克·埃文斯(Eric Evans)-,第5章,涉及关联。他减少模型复杂性的建议之一是为关联强加一个遍历方向。
我引用:
It is important to constrain relationships as much as possible. A bidirectional association means that both objects can be understood only together. When application requirements do not call for traversal in both directions, adding a traversal direction reduces interdependence and simplifies the design. Understanding the domain may reveal a natural directional bias.
最佳答案
当实体A和实体B之间存在关联时,您经常会发现自己仅使用A.B,而从未使用B.A。这可能是因为A是聚合根并且始终是您的起点,因为无论您在哪里操纵B都已经引用了A。
我想Evans只是建议您仅在需要时才添加遍历方向,然后在代码中立即使用它,而不是“在以后需要时”过早添加遍历方向。
关于domain-driven-design - 协会的遍历方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9804815/
我是一名优秀的程序员,十分优秀!