반응형
Symfony2 및 교리-오류 : 잘못된 PathExpression. StateFieldPathExpression이어야합니다.
다음과 같은 엔티티가 있습니다.
/**
* @Gedmo\Tree(type="nested")
* @ORM\Table(name="categories")
* @ORM\Entity()
*/
class Category extends BaseCategory
{
/**
* @ORM\OneToMany(targetEntity="Category", mappedBy="parent")
*/
protected $children;
/**
* @Gedmo\TreeParent
* @ORM\ManyToOne(targetEntity="Category", inversedBy="children")
* @ORM\JoinColumn(name="parent_id", referencedColumnName="id", onDelete="SET NULL")
*/
protected $parent;
}
다음과 같은 쿼리를 실행하려고합니다.
$qb = $this->em->createQueryBuilder()
->select('c.parent')
->from('Category', 'c');
$result = $qb->getQuery()->getArrayResult();
그러나 다음과 같은 오류가 발생합니다.
[Semantical Error] ... Error: Invalid PathExpression. Must be a StateFieldPathExpression.
내 테이블에서 parent_id 필드를 어떻게 선택할 수 있습니까? 나는 많은 변형을 시도했으며 다음과 같은 작업을 수행하더라도 :
$qb = $this->em->createQueryBuilder()
->select('c')
->from('Category', 'c');
parent_id를 제외하고 테이블의 모든 필드를 얻습니다 . 이것은 교리가 방해가되는 것 같습니다. 이 parent_id 필드를 어떻게 쿼리 할 수 있습니까? 또는 더 나은 방법은 parent_id를 포함하여 테이블의 모든 필드를 가져올 수 있습니다.
현재 문서화되지 않은 IDENTITY
함수를 사용하여 쿼리에서 FK ID를 선택할 수 있습니다 .
SELECT IDENTITY(c.parent) ...
createQueryBuilder를 사용하는 솔루션 :
$query->SELECT('pa.id')
->from('Category', 'ca');
$query->join('ca.parent', 'pa');
$result = $query->getQuery()->getArrayResult();
You are selecting an object that is not joined. Like said in another answer, you have to do something like :
qb->innerJoin("c.parent", "p")
반응형
'programing' 카테고리의 다른 글
레이블을 클릭하여 HTML 라디오 버튼을 전환합니다. (0) | 2020.10.04 |
---|---|
JavaScript에서 DOM과 BOM은 무엇입니까? (0) | 2020.10.04 |
C #의 문자열에서 {0}은 (는) 무엇을 의미합니까? (0) | 2020.10.04 |
항목이 std :: vector에 있는지 확인하는 방법은 무엇입니까? (0) | 2020.10.03 |
Pandas DataFrame을 CSV 파일에 쓰기 (0) | 2020.10.03 |