is it possible to perform a case insensitive search on DocumnetDb?
Let\'s say I have a record with \'name\' key and value as \"Timbaktu\"
This will work:
Perhaps this is an ancient case, I just want to provide a workaround.
You could use UDF in azure cosmos db.
udf:
function userDefinedFunction(str){
return str .toLowerCase();
}
And use below sql to query results:
SELECT c.firstName FROM c where udf.lowerConvert(c.firstName) = udf.lowerConvert('John')