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.
要自定义我的实体用户的 GetName 方法,我可以直接在 mu 实体中执行此操作,还是必须通过我的存储库中的自定义方法?
我只想返回前面带有破折号的名称...
我建议您创建另一种方法,该方法将返回
# Name.php public function getDashedName() { return '- ' . $this->getName(); }
如果不能,那么是的,您必须修改getName()实体中的功能。存储库仅用于操作对象的查询。
getName()