Code Monkey home page Code Monkey logo

Comments (6)

dynasource avatar dynasource commented on September 28, 2024

can you elaborate on your usecase and why it is necessary compared to BaseActiveRecord::createRelationQuery()

from active-record.

bscheshirwork avatar bscheshirwork commented on September 28, 2024

now I propose

    public function viaRelation($target, $relationName, $via){
        $target instanceof ActiveRecord || $target = Yii::createObject($target);
        /** @var ActiveQuery $relationQuery */
        $relationQuery = $target->getRelation($relationName);
        $relationQuery->primaryModel = $this;
        return $relationQuery->via($via);
    }

vs

    protected function createRelationQuery($class, $link, $multiple)
    {
        /* @var $class ActiveRecordInterface */
        /* @var $query ActiveQuery */
        $query = $class::find();
        $query->primaryModel = $this;
        $query->link = $link;
        $query->multiple = $multiple;
        return $query;
    }

:
multiple and link get from parent declaration of exist relation.

from active-record.

bscheshirwork avatar bscheshirwork commented on September 28, 2024

It's avoid double declare link and type of relation (multiple)

from active-record.

bscheshirwork avatar bscheshirwork commented on September 28, 2024

i.e. model3, who use relation of model2 as via to model1 not necessary know about details of relation definition into model2

model3 is so pure 👼

from active-record.

bscheshirwork avatar bscheshirwork commented on September 28, 2024

From docs
https://github.com/yiisoft/yii2/tree/master/docs/guide

class Order extends ActiveRecord
{
    public function getOrderItems()
    {
        return $this->hasMany(OrderItem::className(), ['order_id' => 'id']);
    }

    public function getItems()
    {
        return $this->hasMany(Item::className(), ['id' => 'item_id'])
            ->via('orderItems');
    }
}

If model OrderItem have relation item representation of getItem()

class OrderItem extends ActiveRecord
{
    public function getItem()
    {
        return $this->hasOne(Item::className(), ['id' => 'item_id']);
    }
}

model Order can use it like that:

class Order extends ActiveRecord
{
    public function getOrderItems()
    {
        return $this->hasMany(OrderItem::className(), ['order_id' => 'id']);
    }

    public function getItems()
    {
        return $this->viaRelation(Item::className(), 'item', 'orderItems');
    }
}

So... in this notation via relation is main... may be move it to first argument? Contr: function via() in end of chain

from active-record.

bscheshirwork avatar bscheshirwork commented on September 28, 2024

And this can be used for simple-definition chain of relation

from active-record.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.