DDD 主题 - 课程关联 AggregateRoot

发布于 2024-10-16 00:52:53 字数 207 浏览 6 评论 0原文

我是 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 技术交流群。

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

发布评论

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

评论(2

橘和柠 2024-10-23 00:52:53

如果两个实体在没有彼此的情况下都有意义,那么就选择两个不同的存储库。

如果删除某个主题,是否应该删除与该主题相关的所有课程?
如果是,那么您就拥有了一个处理主题和课程的 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.

深居我梦 2024-10-23 00:52:53

如果没有主题课程是否有意义?如果不是,那么是的,这非常类似于Order - OrderItem

Do Lessons make any sense without Topics? if not, then yes, this is very much like Order - OrderItem.

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