Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个实体,一个引用另一个具有多对一关系的实体。例如,用户和城市。我需要用户编辑页面中的城市列表框按名称排序,而不是按 ID 排序。
我该怎么做?
在您的实体中,您可以指定 ordering 。
例子 :
<?php /** * @ManyToMany(targetEntity="Group") * @OrderBy({"name" = "ASC"}) */ private $groups;