- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前我有以下 3 个表。
文章类别
+-------------+---------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+---------+------+-----+---------+-------+
| article_id | int(11) | NO | PRI | NULL | |
| category_id | int(11) | NO | PRI | NULL | |
+-------------+---------+------+-----+---------+-------+
类别
+-----------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-----------------+--------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| title | varchar(255) | NO | | NULL | |
+-----------------+--------------+------+-----+---------+----------------+
文章
+-----------------+--------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-----------------+--------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| title | varchar(255) | NO | | NULL | |
+-----------------+--------------+------+-----+---------+----------------+
在类别实体中
/**
* @ORM\ManyToMany(targetEntity="Article", mappedBy="categories")
* @ORM\OrderBy({"createdAt" = "DESC"})
*/
protected $articles;
文章实体
/**
* All categories this article belongs to.
*
* @ORM\ManyToMany(targetEntity="Category", inversedBy="articles", cascade={"persist"})
* @ORM\JoinTable(name="articles_categories")
*/
protected $categories;
大多数查询都可以正常工作。但我想获取属于某个类别的文章。或者有特定类别或想要根据类别过滤文章。
为此,我编写了以下查询。
$em = $this->getEntityManager();
$qb = $em->createQueryBuilder('c');
$qb->select('1')
->from('articles_categories', 'a_c')
->leftJoin('\\Chip\\Entity\\Article', 'a', 'WITH', 'a.id = a_c.article_id')
->leftJoin('\\Chip\\Entity\\Category', 'c', 'WITH', 'c.id = a_c.category_id')
;
$result = $qb->getQuery()->getResult();
但它抛出以下错误。
[Semantical Error] line 0, col 14 near 'articles_categories': Error: Class 'articles_categories' is not defined.
500 Internal Server Error - QueryException
1 linked Exception: QueryException »
任何帮助或提示或任何更好的编写查询的方法都会很棒。
提前致谢。
最佳答案
您不应在查询生成器中使用表名称,而应使用类名称。
$em = $this->getEntityManager();
$qb = $em->createQueryBuilder('c');
$qb->select('c', 'a')
->from('Chip\Entity\Category', 'c') // this line is not necessary when performing this query in your category repository
->leftJoin('c.articles, a')
->where('c.id = 1');
$result = $qb->getQuery()->getResult();
关于php - 教义查询多对多[语义错误],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38851808/
我想检测不等于 1,2,3 或 NULL 的 id。这是我的查询: $qb = $this->_em->createQueryBuilder() ->select('u.cityId')
tl;博士 我有一个有效的 SQL 查询,它从 SQL 命令行返回行,但通过 Doctrine 提交时则不会。我认为问题在于我如何设置ResultSetMapper。我读过docs关于 native
我正在创建只有两个实体的小型应用程序,Order 和 Shipment。 Shipment 实体如下:(为了简短起见删除了方法) /** * @var integer $id * * @ORM\
是否可以在 Doctrine 2 中指定 unsigned integer 的列类型? 最佳答案 /** * @ORM\Column(name="id", type="integer", option
有谁知道有没有使用 Doctrine 而不使用 DQL 的快速方法来获取表中的所有记录。 我错过了什么,还是你需要在类里面编写公共(public)函数? 最佳答案 如果你有一个实体类( Doctrin
我在 MySQL 中有这个查询,我想应用到学说中 SELECT * FROM ads_list AS al LEFT JOIN (ads_category AS ac, ads_category_ma
让我们看看我的类(class)。可以看到,Model中有Batteries,这是ManyToMany的关系。模型还有 1 block 电池,这是数量最多的电池之一。 例如,我想选择电池(不是任何一个电
也许有人可以帮我改造 我试图通过 page_id 获取与 theFaqPageQuestionContent 无关的 QuestionContent 并在选择框中查看它 SELECT q FROM V
我正在尝试使用表情符号保存文本。然而,表情符号不存储在文本中。我得到的不是表情符号,而是 ? 在数据库中。 # Doctrine Configuration doctrine: dbal
我正在尝试使用方法 ArrayCollection::contains 来查找对象是否已经在我的集合中,但是当我这样做时: //My ArrayCollection $lesRoles = $drt-
我正在使用 Doctrine's 2 Tree-Nestedset extension使用 MySQL IndoDB 数据库。 yml 表架构如下所示: Ext\Entity\PageElement:
我该怎么办 WHERE id != 1 在教义中? 到目前为止我已经有了 $this->getDoctrine()->getRepository('MyBundle:Image')->findById
使用具有结构的表: id | count /string/id1 | 3 /string/id1/r1 | 2 /string/id1/r2 | 1 /strin
DBAL 查询生成器: http://www.doctrine-project.org/api/dbal/2.3/class-Doctrine.DBAL.Query.QueryBuilder.html
使用 Doctrine,我的实体中有 fetch=EAGER : class TrainingOrganization { /** * @var TrainingOrganizati
我只是想知道 Doctrine 与 Symfony 中双向关系的优点/缺点是什么? 我所有的关系都是双向的,但我不确定这是否会导致问题...... 谢谢。 最佳答案 只要您不将关系标记为EAGER,我
使用具有结构的表: id | count /string/id1 | 3 /string/id1/r1 | 2 /string/id1/r2 | 1 /strin
我正在寻找一种将数组转换为学说实体的方法。我正在使用原则 2。 我有一个实体类,例如: class User { /** * @Id * @Column(type="int
所以我有这两个类,它们之间有 OneToMany 和 ManyToOne 关系: 命名空间 RM\Entity; 使用 Doctrine\Common\Collections\ArrayCollect
我有一个Application与 ApplicationFile 有关系: /** * @ORM\OneToMany( * targetEntity="AppBundle\Entity\App
我是一名优秀的程序员,十分优秀!