case - uppercase and lowercase not working in Contains in Aws dynamoDB? -


in database, value uppercase(ex:krishna). when give search condition lowercase (ex:krishna). in case dynamodb scan contains - method returns empty result.but if give uppercase works fine.please me.

for reference code is:

var params = {     tablename: "user",     filterexpression: "not userid in (:a) , contains(event_name, :name)",     expressionattributevalues: {         ":a": {             s: $scope.userid         },         ":name": {             s: namekey         }     } }; 

using dynamodb scan method


Comments

Popular posts from this blog

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

transpose - Maple isnt executing function but prints function term -