根据多种条件从加入中选择的学说



我试图根据连接中的多个ID进行选择,每个ID应该匹配另一个连接的另一个条件。

我需要获得"二分法"在"位置" 1或2中的"类型"。目前,它给我的结果与传递到该功能的二分法之一相匹配,但并非全部。

$QB->select("Types","Types,ElementsPositions, Elements, Positions, Dichotomies, Quadras,TypesDescriptions,Relations")
                ->from($this->get_repository()[0], 'Types');
                $QB->leftJoin("Types.ElementsPositions","ElementsPositions", DoctrineORMQueryExprJoin::WITH, 'ElementsPositions.Positions = 1 OR ElementsPositions.Positions = 2');
                $QB->leftJoin("ElementsPositions.Elements","Elements");
                $QB->leftJoin("ElementsPositions.Positions","Positions");
                $QB->leftJoin("Elements.Dichotomies","Dichotomies");
                $QB->leftJoin("Types.Quadras","Quadras");
                $QB->leftJoin("Types.TypesDescriptions","TypesDescriptions");
                $QB->leftJoin("Types.Relations","Relations");
    if(!empty($where['dichotomies'])){
        foreach($where['dichotomies'] as $dichotomy){
                $QB->andWhere('Dichotomies.id'.'=:dichotomy');
                $QB->setParameter('dichotomy', $dichotomy['id']);                
        }            
    }

upd。表映射 - 在JSON中:

{
"table-name": "types",    
"joins":[
    {
        "table-name":"elements_positions",
        "type":"one-to-many"
    },
    {
        "table-name":"quadras",
        "type":"many-to-one"
    },
    {
        "table-name":"types_descriptions",
        "type":"one-to-one"
    },
    {
        "table-name":"relations",
        "type":"many-to-one"
    }
]}

元素位置

{
    "table-name": "elements_positions",
    "joins":[
        {
            "table-name":"elements",
            "type":"many-to-one"
        },
        {
            "table-name":"positions",
            "type":"many-to-one"
        },
        {
            "table-name":"types",
            "type":"many-to-one"
        }
    ]
}

元素

 {
        "table-name": "elements",    
        "joins":[
            {
                "table-name":"elements_positions",
                "type":"one-to-many"
            },
            {
                "table-name":"quadras",
                "type":"many-to-many"
            },
            {
                "table-name":"dichotomies",
                "type":"many-to-many"
            }
        ]
    }

位置

    "table-name": "positions",    
    "joins":[
        {
            "table-name":"elements_positions",
            "type":"one-to-many"
        }
    ]
}

二分法:

{
    "table-name": "dichotomies",
    "joins":[
        {
            "table-name":"elements",
            "type":"many-to-many-inversed"
        }
    ]
}

您的查询有两个不同的问题。

首先,多个参数值与单个参数结合。$where['dichotomies']的每个下一个元素替换了查询中参数:dichotomy的先前值。方法setParameters()并没有真正将值绑定到准备好的语句:它只是将它们存储在QueryBuilder对象中。因此,在for-loop结束后,所有条件都将使用相同的值($where['dichotomies']的最后一个)。为避免您需要使用不同的参数名称或数字索引。

第二,您添加了矛盾的条件: $QB->andWhere()将产生类似的东西:

Dichotomies.id = :dichotomy 
AND Dichotomies.id = :dichotomy 
AND Dichotomies.id = :dichotomy 
...

一个实体ID显然不能同时等于不同的值。因此,您需要由OR操作员替换AND

,但更好的方法是使用IN子句:

调用setParameter()自动注入您将您设置为值的类型。这适用于整数,字符串/整数的数组,DateTime实例和托管实体。

只需用以下几行替换foreach-loop:

$QB->andWhere('Dichotomies.id IN (:dichotomies)');
$QB->setParameters('dichotomies', array_column($where['dichotomies'], 'id'));

array_column()功能返回所有二分法的ID列表。学说生成 IN表达式并使用该列表来生成查询占位符并绑定值。

相关内容

  • 没有找到相关文章

最新更新