Many-to-many relation in yii2 activedataprovider
问题 I have many-to-many relation with three tables: Category , Product , ProductCategory . Relation in Category : public function getProductCategories() { return $this->hasMany(ProductCategory::className(), ['category_id' => 'id']); } Relation in Product : public function getProductCategories() { return $this->hasMany(ProductCategory::ClassName(), ['product_id' => 'id']); } And in ProductCategory public function getProduct() { return $this->hasOne(Product::className(), ['id' => 'product_id']); }