在WHERE中使用oneToMany查询DQL

时间:2019-06-30 01:26:55

标签: php doctrine dql

此查询无效:

public function getByUnidadeAnoSemestre(int $unidadeId, int $ano, int $semestre) : array
{
    $query = $this->em->createQuery(
        'SELECT s,u,p FROM ' . 
            Servico::class . ' s ' .
        'INNER JOIN ' . 
            's.unidade u ' . 
        'INNER JOIN ' . 
            's.precificacoes p ' .
        'WHERE ' . 
            'u.id = :unidadeId ' . 
            'AND p.anoLetivo = :ano ' . 
            'AND p.semestre = :semestre'
    )->setParameters([
        "unidadeId" => $unidadeId,
        "anoLetivo" => $ano,
        "semestre" => $semestre
    ]);

    return $query->getResult();

}

Service类中的映射如下:

/**
* @OneToMany(targetEntity="Precificacao", mappedBy="precificacoes", cascade={"persist"})
* @var Collection 
*/
private $precificacoes;

/**
* @ManyToOne(targetEntity="Unidade", inversedBy="id", cascade={"persist"})
* @JoinColumn(name="unidadeId", referencedColumnName="id")
* @var Unidade 
*/
private $unidade;

Slim错误消息是:

  

“关联类型必须为* _TO_ONE或MANY_TO_MANY中的一种”

Php控制台中的错误是:

  

PHP注意:未定义的索引:946行上的D:\ Projetos \ FinanceiroEscolarApi \ vendor \ doctrine \ orm \ lib \ Doctrine \ ORM \ Query \ SqlWalker.php中的precificacoes

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

我能够找出问题所在。这是服务与精确度之间的一对多双向映射。

Servico类映射

/**
* @OneToMany(targetEntity="Precificacao", mappedBy="servico", cascade={"persist"})
* @var Collection 
*/
private $precificacoes;

Precificacao类映射

/**
 * @ManyToOne(targetEntity="Servico", inversedBy="precificacoes", cascade={"persist"})
 * @JoinColumn(name="servicoId", referencedColumnName="id")
 * @var Servico
 */
private $precificacoes;

然后我更正了查询

public function getByUnidadeAnoSemestre(int $unidadeId, int $ano, int $semestre) : array
{
    $query = $this->em->createQuery(
        'SELECT s,u,p FROM ' . 
            Servico::class . ' s ' .
        'INNER JOIN ' . 
            's.unidade u ' . 
        'INNER JOIN ' . 
            's.precificacoes p ' .
        'WHERE ' . 
            'u.id = :unidadeId ' . 
        'AND p.anoLetivo = :ano ' . 
            'AND p.semestre = :semestre'
        )->setParameters([
            "unidadeId" => $unidadeId,
            "ano" => $ano,
            "semestre" => $semestre
        ]);

    return $query->getResult();
}