«dql» 태그된 질문

3
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 …

2
Doctrine 쿼리에서 null 값을 필터로 지정하는 방법은 무엇입니까?
Zend에서 Doctrine 1.1을 사용하고 있습니다. 특정 열에 null 값이있는 레코드를 반환하는 쿼리를 작성하려고합니다. $q = Doctrine_Query::create() ->select('a.*') ->from('RuleSet a') ->where('a.vertical_id = ?', null); $ruleset_names_result = $q->execute(array(), Doctrine::HYDRATE_ARRAY); vertical_id 열에 NULL 값 이있는 규칙 세트 테이블에 세 개의 레코드가 있지만 쿼리는이를 찾지 못합니다. 도움을 주셔서 감사합니다. 시드.
79 php  null  doctrine  dql 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.