为什么位置是一个实体?

发布于 2024-12-27 09:56:17 字数 237 浏览 2 评论 0原文

我正在阅读 Cargo DDD 示例的代码。有人可以向我解释为什么位置是实体吗?我认为它应该是一个值对象。你怎么认为?

位置类别

I am reading the code of Cargo DDD sample. Can someone explain to me why the Location is Entity? I think it should be a Value Object. What do you think?

Location class

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

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

发布评论

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

评论(2

甜`诱少女 2025-01-03 09:56:17

位置是一个实体,因为它有一个身份来识别,并且它是域的组成部分。原因是货物从一个来源地点经过其他地点运送到特定的目的地地点。

您需要通过其标识正确识别不同的位置,因此您需要一个存储库来从数据源获取位置或插入新位置。

Location is an Entity cause it has an Identity to identify and its an integral part of the Domain. Cause cargo gets shipped from one source location over other locations to a specific destination location.

You need to identity the diffrent locations correctly by its identity and therefore you need a repository to get locations from data source or to insert new locations.

謌踐踏愛綪 2025-01-03 09:56:17

我认为,实体的实现都是“它是什么”,而值对象的实现是“它是什么”。值对象始终是不可变的和共享的。

在 Cargo 的示例中,我认为我们应该区分位置,而不仅仅是位置的内容。

I think, all about the implementation of entity is "which is it", but of value object is "what is it". The value object is always immutable and shared.

In the sample of Cargo, I think we should differ out the locations, not only what's about the location.

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