views:

434

answers:

1

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?

+4  A: 

I found out it's ignoring case by default.

Pr0fess0rX