你好,我已經通過註解我一個得到這個PHP以一對多的關係學說2,一對多的關係排序依據註解
/**
* 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
任何人都得到了類似的問題?任何意見將不勝感激。