Is something like this possible?
SELECT u FROM User WHERE u.address.city LIKE 'Gotham City'
I know it can be solved with JOIN-s, but im wondering if DQL supports this style of querying. Did not find anything in the official docs.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s not possible, you have to join the entity as a specific identifier and check the address using the joined entity.