I want to get data from SharePoint List using CAML and filtered by Title with ignore case like

<Query>
   <Where>
      <Eq>
         <FieldRef Name='Title' />
         <Value Type='Text'>Car</Value>
      </Eq>
   </Where>
</Query>

But with ignore case so if i have an item with title: car the caml should return it how can I do this?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

I found out it's ignoring case by default.

link|improve this answer
and I think it's depending on the sql collation – AMgdy May 5 '11 at 15:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.