回答編集履歴
2
句読点修正
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
MySQL専用ですが
|
5
|
+
MySQL専用ですが、ここでの回答にあるカスタムアソシエーション [GroupLimitedBelongsToMany](https://gist.github.com/ndm2/b417e3fa683a972e295dc0e24ef515e3) を利用するのがよいでしょう。
|
6
6
|
|
7
7
|
|
8
8
|
|
1
回答の修正
test
CHANGED
@@ -1,4 +1,24 @@
|
|
1
|
-
|
1
|
+
Stack Overflow に同様の質問があります。 [cakephp - How to limit contained associations per record/group? - Stack Overflow](https://stackoverflow.com/questions/30241975/how-to-limit-contained-associations-per-record-group)
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
MySQL専用ですが。ここでの回答にあるカスタムアソシエーション [GroupLimitedBelongsToMany](https://gist.github.com/ndm2/b417e3fa683a972e295dc0e24ef515e3) を利用するのがよいでしょう。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
GroupLimitedBelongsToMany, GroupLimitedSelectLoader クラスを作成して、window-based-group-limited-belongs-to-many-associations.php に記述されているように使用すればよいです。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
---
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
以下は、Tagsを1件のみ取得する場合のみ有効です。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
~~単純にアソシエーションのクエリ部分にlimitを追加すれば良いです。~~
|
2
22
|
|
3
23
|
|
4
24
|
|
@@ -22,8 +42,8 @@
|
|
22
42
|
|
23
43
|
|
24
44
|
|
25
|
-
参考までにhasManyでの書き方ですが、belongsToManyでも利用できるはずです。
|
45
|
+
~~参考までにhasManyでの書き方ですが、belongsToManyでも利用できるはずです。~~
|
26
46
|
|
27
47
|
|
28
48
|
|
29
|
-
[CakePHP3でhasManyの取得件数を制限する | php-tips.com](https://php-tips.com/2018/06/13/cakephp3-limit-on-hasmany/)
|
49
|
+
~~[CakePHP3でhasManyの取得件数を制限する | php-tips.com](https://php-tips.com/2018/06/13/cakephp3-limit-on-hasmany/)~~
|