CAML request tailored request

I have a caml request that pulls data from a sharepoint list

Here is the query I'm using

tempQuery = "John" + CURRENT_USER_Info.currFilter + "";

The problem is that I have a search only for John, not for john or JOHN

so basically looking for a caml request that can filter case sensitively ..

Any help is appreciated.

+5
source share
2 answers

Caml requests do not have case sensitivity. You must filter secondary results for case sensitivity.

+5
source

, CAML , LINQ to SharePoint , .

+2

All Articles