タイトルの通りなのですが、CakePHP3で、Containに条件を含めて
複数のテーブルの中から条件にあったものだけを取得したいです。
php
1 7class TableA extends Table{ 2 8 3 9 public function initialize(array $config){ 410 511 $this->hasMany('relation', [ 612 'className' => 'Relations', 713 'foreignKey' => 'id', 814 ]); 915 } 1016}
php
1public function getRelationController{ 2 3 //(省略) 4 5 268 $table = TableRegistry::get('tableA'); 6 269 $relation = TableRegistry::get('relation'); 7 270 8 271 $query = $table->find() 9 272 ->where([ 10 273 'location BETWEEN :min_lon AND :max_lon', 11 275 ])//条件1 12 276 ->bind(':min_lon',$x2) 13 277 ->bind(':max_lon',$x1) 14 280 ->order(['tableA_id'=>'DESC']) 15 281 ->contain(['relation'=> function ($q) use ($user_id) { 16 282 return $q 17 283 ->where(['relation.user_id' => $user_id]);//条件2 18 284 }]) 19 285 ->limit(10)->offset($offset); 20 21 //(省略)
こうした場合最初のwhere
でかけた条件に引っ掛かったものが取り出されてしまいます。
本来は、
【”tabelA”テーブルに対する条件1を満たし、かつ"relation"テーブルに対する条件2を満たす】
といったものだけを10件ずつ取得したいです。
なにかありましたら随時補足させていただきますので、よろしくお願い致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。