簡體   English   中英

如何與多個has一起使用hasMany中包含cakephp 3.x

[英]How belongsTo works with mutiple hasMany in contain cakephp 3.x

我需要具有給定屬性ID的用戶,例如Property.id = $id

我想建立這個查詢。

$sql = "SELECT p.address1, p.address2, p.address3, p.postcode,
               u.email, u.fullname
               c.company_name, 
               tc.created,
               tn.active
        FROM property AS p
        LEFT JOIN tenancy AS tc ON tc.property_id = p.id 
        LEFT JOIN tenant AS tn ON tn.tenancy_id = tc.id 
        LEFT JOIN users AS u ON u.id = tn.user_id 
        WHERE p.id = $id
            AND p.active = 1
            AND tc.active = 1
            AND tn.active = 1
            AND u.active = 1
        "; 

這是我的關聯:

// Tenants
class TenantTable extends Table
{
public function initialize(array $config)
{
    $this->table('tenant');
    $this->displayField('id');
    $this->primaryKey('id');
    $this->addBehavior('Timestamp');
    $this->belongsTo('Users', [
        'foreignKey' => 'user_id',
        'joinType' => 'INNER'
    ]);
    $this->belongsTo('Tenancies', [
        'foreignKey' => 'tenancy_id',
        'className' => 'tenancy',
        'joinType' => 'INNER'
    ]);


// Users
class UsersTable extends Table
{

public function initialize(array $config)
{
    $this->table('users');
    $this->displayField('name');

    $this->hasMany('Tenants', [
        'foreignKey' => 'user_id',
        'foreignKey' => 'tenants'
    ]);
}


// Tenancies
class TenancyTable extends Table
{

public function initialize(array $config)
{
    parent::initialize($config);

    $this->table('tenancy');
    $this->displayField('id');
    $this->primaryKey('id');

    $this->addBehavior('Timestamp');

    $this->belongsTo('Properies', [
        'foreignKey' => 'property_id',
        'className' => 'property'
    ]);

    $this->belongsTo('Company', [
        'foreignKey' => 'company_id'
    ]);

    $this->hasMany('Tenant', [
        'foreignKey' => 'tenancy_id',
        'className' => 'tenant'
    ]);


// Properties
class PropertyTable extends Table
{

public function initialize(array $config)
{
    parent::initialize($config);

    $this->table('property');
    $this->displayField('id');
    $this->primaryKey('id');

    $this->addBehavior('Timestamp');

    $this->belongsTo('Company', [
        'foreignKey' => 'company_id'
    ]);

    $this->hasMany('Tenancies', [
        'foreignKey' => 'property_id',
        'className' => 'tenancy'
    ]);
}

我可以獲取hasMany關聯,但是當涉及到Users時,它告訴我租戶未與Users關聯。 關聯如何設置且正確。 我正在從PropertyTable運行以下ORM。

$query = $this->find()
            ->select([ 
                'Property.id', 'Property.company_id', 'Property.address1', 'Property.address2', 'Property.address3','Property.postcode',
                'Tenancies.id', 'Tenancies.property_id', 'Tenancies.created', 'Tenancies.stage', 'Tenancies.landlord_offer_sent',
                'Company.id', 'Company.company_name',
                'Tenants.id', 'Tenants.user_id', 'Tenants.stage', 
                'Users.id', 'Users.email', 'Users.fullname'
            ])
            ->where(['Property.id' => $id])
            ->contain(['Company', 'Tenancies'])
            ->leftJoinWith('Tenancies', function(\Cake\ORM\Query $query) {
                return $query->where([
                    'Tenancies.active' => 1,
                ]);
            })
            ->contain(['Tenancies.Tenants'])
            ->leftJoinWith('Tenancies.Tenants', function(\Cake\ORM\Query $query) {
                return $query->where([
                    'Tenants.active' => 1,
                ]);
            }) 
 /*======= The problem starts from here  =========*/        
            ->contain(['Tenancies.Tenants.Users'])
            ->leftJoinWith('Tenancies.Tenants.Users', function(\Cake\ORM\Query $query) {
                return $query->where([
                    'Users.active' => 1,
                ]);
            });

任何幫助

根據您提供給我們的信息,您具有以下關系:

物業hasMany租約hasMany租戶屬於用戶屬性屬於公司

假設您在表類中進行了設置,則可以使用包含與上面的操作類似的包含的聯接:

public function getExample($id) {
    return $this->find()
    ->contain([
        'Company' => function ($q) {
            return $q
                ->select(['id', 'company_name'])
                ->where(['Company.active = 1']);
        },
        'Tenancies' => function($q) {
            return $q
                ->select(['Tenancies.id','Tenancies.property_id','Tenancies.created',
                    'Tenancies.stage','Tenancies.landlord_offer_sent',
                    'Tenants.id','Tenants.stage', 'Tenants.user_id', 'Tenants.tenancy_id',
                    'Users.id', 'Users.email', 'Users.fullname'
                ])->leftJoin(['Tenants' => 'tenant'],[
                    'Tenants.tenancy_id = Tenancies.id'
                ])->leftJoin(['Users' => 'users'],[
                    'Users.id = Tenants.user_id'
                ])
                ->where([
                    'Tenancies.active = 1',
                    'Tenants.active = 1',
                    'Users.active = 1',
                ]);
        }
    ])
    ->where(['Property.active = 1', 'Property.id' => $id])
    ->toArray();
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM