Doctrine DQL and Namespaces (relative only?)

2019-06-21 19:05发布

i noticed that if i try to do soemthing like

$query = $em->createQuery('SELECT u FROM \Application\Entities\User u');

i get

[Semantical Error] line 0, col 14 near '\Application\Entities\User': Error: Class '\' is not defined.

if i do

$query = $em->createQuery('SELECT u FROM Application\Entities\User u');

its ok. so the question is, can i say that DQL only accepts relative namespaces in DQL statements?

标签: doctrine dql
1条回答
可以哭但决不认输i
2楼-- · 2019-06-21 19:36

i found the answer at doctrine forums

There are no "relative" namespaces in strings

It must be the fully qualified class name minus the beginning \

查看更多
登录 后发表回答