Get items from a sharepoint list by Title field ignoring help with Caml or SPQuery

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?

+3
source share
1 answer

I found out that he ignored the default case.

+6
source

Source: https://habr.com/ru/post/1721765/


All Articles