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.
多対 1 の関係を持つ別のエンティティを参照する 2 つのエンティティがあります。たとえば、ユーザーと都市です。ID ではなく名前でソートするには、ユーザー編集ページの都市を含むリストボックスが必要です。
どうすればいいですか?
エンティティでは、順序を指定できます。
例 :
<?php /** * @ManyToMany(targetEntity="Group") * @OrderBy({"name" = "ASC"}) */ private $groups;