I'm currently developing an application in Symfony2.6 (first time using it) which basically is an new management system of an existing database of objects. While the management (users, roles, routes etc) uses a new orm database, the objects are stored in an seperated database.
The object database also has a read only flag on some tables and gets modified by external staff, so an ORM on this database would be a bad idea.
But: I still want to have an (aggregated) entity of these objects which I can query and populate, also with writing back to specific tables and binding to forms. Is there any best practice for achieving this?
EDIT: Essentially I want to have this:
Table1:
col11 col12 col13 col14
Table2:
col21 col22 col23 col24
Now I only want an object composed of col11, col14, col22, col24. How do I do this and how is it possible to populate and update via entity manager?