How do I query CosmosDB ignoring accents? Example:
{"id": "1", "name": "Émpresa 1" }
{"id": "2", "name": "empresa 2" }
SELECT *
FROM container_name
WHERE name LIKE 'empresa%'
I want to retrieve both records from this query, how can I do that? If it's not possible "out of the box" then is there any workaround?