DDD:从哪里获取值对象列表最合适
我有一个分配给产品的名为“产品类型”的值类型。 (产品有一种产品类型)
为了允许用户从列表中选择类型,我将填写一个下拉列表。 在哪里检索产品类型列表最合适? 实现存储库模式的类?
编辑:通过将产品代码更改为产品类型来澄清。 产品类型类似于“DVD”/“CD”/“蓝光”等。
I've got a value type called "Product Type" that is assigned to a product. (A product has one product type)
To allow the user to select the type from a list, I'm going to fill a dropdown. Where is it most appropriate to retrieve the list of product types? A class implementing a repository pattern?
Edit: Clarified by changing product code to product type. A product type is something like "DVD"/"CD"/"Blu Ray"/etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
产品似乎是聚合根,因此产品类型列表应该位于 ProductRepository 中。
Product seems to be aggregate root, so list of product types should be in ProductRepository.