I want to get data from a SharePoint list using CAML and filter by header with ignore argument, e.g.
<Query>
<Where>
<Eq>
<FieldRef Name='Title' />
<Value Type='Text'>Car</Value>
</Eq>
</Where>
</Query>
But with an ignore argument, so if I have an element with the title: carcaml should return it, how can I do this?
source
share