Request on key/value in a JSON type field with Doctrine2
问题 I'm trying to figure out how, in a symfony 3.4 app, to retrieve (through a repository method, with a DQL request for example) entities depending on a value for a specific key in a "json" typed column. Saw there's some stuff possible with postgre but I didnt find anything with mariaDB Let's say I get an entity Letter with this property : /** * * @ORM\Column(type="json") */ private $metadatas; which contains, for example: { "key1": "value", "key2": "value" } How can I, or, Is it possible to