Tagged Questions
2
votes
2answers
184 views
How to set an entity field that does not exist on the table but does exists in the raw SQL as an alias?
Lets say that we have a query like this one:
SELECT *, (CUSTOM_EXPRESSION) as virtualfield FROM users
The user's entity itself has the "virtualfield" but the mapping annotations no, since the table ...