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.
情况:
我有一个 MySQL 数据库,其中包含数百个将由管理员操作生成的表。我想利用 symfony 实体的好处,但我不想为此生成数百个实体文件。
目标:
有一个实体工厂之类的东西,它可以返回我的表对象。
Zend 框架:
$bugTable = new Zend_Db_Table('job_153');
有没有办法通过 symfony 2 实现这一点?
我认为不可能在运行时动态定义实体。
如果您有一个复杂的模式,那么doctrine:mapping:import自动生成映射文件可能会很有用。
doctrine:mapping:import
经过一些研究,我认为使用内置方法是不可能的。