gpt4 book ai didi

doctrine-orm - Doctrine 2,一对多关系 OrderBy Annotations

转载 作者:行者123 更新时间:2023-12-04 04:35:10 25 4
gpt4 key购买 nike

你好,我通过我的一对多关系的注释得到了这个 php 命令

 /**
* TaskCategory
*
* @Table(name="task_category")
* @Entity(repositoryClass="models\Repositories\TaskCategoryRepository")
*/
class TaskCategory
{
/**
* @var array $tasks
*
* @OneToMany(targetEntity="Task", mappedBy="taskCategory"")
* @OrderBy({"sort_order" = "ASC"})
*/
private $tasks;

我收到了这个错误:
Uncaught exception 'Doctrine\Common\Annotations\AnnotationException' with message '[Syntax Error] Expected Doctrine\Common\Annotations\Lexer::T_CLOSE_PARENTHESIS, got 'order' at position 108

有人遇到过类似的问题吗?任何建议将不胜感激。

最佳答案

正确的注释是

@OrderBy({"name" = "ASC"})

参见: Doctrine 2 manual: Annotations reference

关于doctrine-orm - Doctrine 2,一对多关系 OrderBy Annotations,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6839193/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com