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.
我有一个给定的表,我想插入到我的数据库中。我知道 S2 可以从实体创建表,但相反的可能吗?我的意思是,是否可以从给定的表中创建实体?
否则,我想我只需要创建一个实体来对应我的表结构。
php app/console doctrine:mapping:import AcmeBlogBundle annotation php app/console doctrine:generate:entities AcmeBlogBundle
这是官方文档中的一个示例。此代码从您的数据库创建所有实体(如果您在配置文件中指定了数据库)。