I have the following CAML query:
<Where>
<In>
<FieldRef Name='ObjectID' />
<Values>
<Value Type='Integer'>71</Value>
<Value Type='Integer'>72</Value>
</Values>
</In>
</Where>
But what I want in the result set if effectively the negation of that, or items that do not meet the condition.
Is there any way I can achieve this with a relatively simple query.
I'm new to CAML and I can't find anything like a Not operator.
I looked at this question but it's on 2007, apparently before the <In> element was introduced. Apologies for the title, it wouldn't let me post it with a sensible one because of the question linked to.