1
我嘗試爲PostgreSQL數據庫中的現有表配置實體。 此數據庫中的序列名稱不是默認的教義名稱,所以我必須在實體中進行說明。Symfony2,Doctrine2和PostgreSQL:錯誤「未定義的變量:className」
Webclient\db\LoginBundle\Entity\WebclientUsers:
type: entity
table: webclient.t_webclientusers
fields:
id:
type: integer
generator:
strategy: AUTO
sequenceGenerator:
sequenceName: webclient.s_webclientusers_id
email:
type: text
lifecycleCallbacks: { }
我也嘗試過其他的策略配置,但我仍然有錯誤:
Notice: Undefined variable: className in ****\Symfony\vendor\doctrine\lib\Doctrine\ORM\Mapping\ClassMetadataFactory.php line 343
我能做些什麼呢?