0
Does anyone know a way to perform a query using Doctrine which has a JSON field?
Example query in Postgresql:
select id, nome, tipo, '{"idUsuario":465,"login":"paulo"}'::json
from public.usuarios
limit 5;
I need to do this consultation on Doctrine 2, someone knows how?