joinWith('category.lang') ->joinWith('purpose.lang'); // add conditions that should always apply here $dataProvider = new ActiveDataProvider( [ 'query' => $query, ] ); $dataProvider->setSort( [ 'attributes' => [ 'category_id', 'purpose_id', ], ] ); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to return any records when validation fails // $query->where('0=1'); return $dataProvider; } // grid filtering conditions $query->andFilterWhere( [ 'like', 'category_lang.name', $this->category_id, ] ) ->andFilterWhere( [ 'like', 'tax_option_lang.value', $this->purpose_id, ] ); return $dataProvider; } }