使用Doctrine :: generateYamlFromDb()时,我可以指定要使用的前缀吗?
例如,如果表名是“user”,则默认情况下,生成的类名称为“User”。我可以确保类名(和文件名)是“PrefixUser”吗?
答案 0 :(得分:0)
//Doctrine_Core::generateYamlFromDb($yamlPath, array $connections = array(), array $options = array())
Doctrine_Core::generateYamlFromDb(
'schema.yml',
array(), // will use the default connection
array( // the $options array
'classPrefix'=>'Prefix',
'classPrefixFiles'=>true
)
);
未测试:D