DDD 主题 - 课程关联 AggregateRoot
我是 DDD 新手。我有一个主题实体和课程实体。 主题有很多教训。 我需要添加/删除主题以及课程。我应该为实体创建两个不同的存储库吗? 或者只有一个 TopicRepository 来处理所有课程?这是经典的Order - OrderItem 模型吗?
谢谢
I'm new in DDD. I have a Topic entity and Lesson entity. Topic has many Lessons.
I need to add/remove Topics as well as Lessons. Should i create two different repositories for entities,
or just one TopicRepository which handles all the lessons? Is this a classic Order - OrderItem model?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果两个实体在没有彼此的情况下都有意义,那么就选择两个不同的存储库。
如果删除某个主题,是否应该删除与该主题相关的所有课程?
如果是,那么您就拥有了一个处理主题和课程的 TopicRepository。
如果没有,您有两个存储库。
If both entites makes sense without eachother, then go for the two different repositories.
If you delete a topic, should you then delete all lessons associated with this topic?
If, yes .. then You got yourself a TopicRepository handling both topics and lessons.
If no, you have two repositories.
如果没有
主题
,课程
是否有意义?如果不是,那么是的,这非常类似于Order - OrderItem。Do
Lesson
s make any sense withoutTopic
s? if not, then yes, this is very much like Order - OrderItem.