我对整个域驱动设计有点陌生,如果你能告诉我你认为这样的服务方法在应用程序或域层中的位置,我会很喜欢它:
List<Children> getChildrenByParent(Parent parent, int offset, int count) {
return repository.listChildrenByParent(Parent parent, int offset, int count);
}
我还想知道当模型中有大量实体和/或我需要有效地过滤事物时,这是否是一种可接受的做事方式。
由于
答案 0 :(得分:5)
您列出的方法似乎没有任何意义。为什么要使方法getChildrenByParent 完全包装repository.listChildrenByParent?它已经在正确的位置 - 在存储库中。只需在需要的地方使用repository.listChildrenByParent。
答案 1 :(得分:2)
其中一个思考过程是将核心功能域与查询域分开(报告,搜索等)。您添加的方法似乎是用于报告或搜索目的。你应该直接在存储库中调用该方法