[Solved] Relation to many and get without this

[ad_1] In SQL, this type of query needs what is known as an EXCEPTION JOIN. Some RDBMSs actually implement this as a separate type (such as DB2), while others need to use a workaround. In your case, it amounts to (in SQL): SELECT User.* FROM User LEFT JOIN UserHouse ON UserHouse.id_user = User.id WHERE UserHouse.id_user … Read more

[Solved] AppBundle symfony 4

[ad_1] in SF4, The main application component is named ‘App’ by default and is not a bundle. You have to manually create a dummy bundle under src\ directory in order to use old doctrine:command related to bundle. see how to manually create a bundle here After that, you can import/generate mappings/entities using doctrine:commands and use … Read more