Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this CAML (lol thanks to Alex)

query.Query = @"<Where><Eq><FieldRef Name='MessageID' /><Value Type='Text'></Value></Eq></Where>";

This checks if the value of MessageID = string.empty()

What I would like to check for is null.... not empty string...

Is this possible with CAML?

share|improve this question
1  
Wrapping an SQL-like querying language in XML: a stroke of genius, or pure malice? You decide. – Juliet Aug 27 '09 at 14:08
It would work if it was SQL... but its another funky (broken) aspect of SharePoint. SharePoint never disappointments... – JL. Aug 27 '09 at 14:10
Also you have to love Microsofts documentation - msdn.microsoft.com/en-us/library/dd588322%28office.11%29.aspx - explains everything else except how to use isnull.... – JL. Aug 27 '09 at 14:11

2 Answers

up vote 15 down vote accepted

CAML has the IsNull operator,so the query would be:

query.Query = @"<Where><IsNull><FieldRef Name='MessageID' /></IsNull></Where>"
share|improve this answer
1  
How on earth do you know this type of thing? :) but thanks! – JL. Aug 27 '09 at 14:01
Lol - only problem is it doesn't work :) – JL. Aug 27 '09 at 14:03
How does it not 'work' You could try using an Or statement, check for empty AND Null values? – Colin Aug 27 '09 at 14:09
P.S. what type is the field of anyway, it says MessageID. Is that an integer? – Colin Aug 27 '09 at 14:10
Its a string... but when I step through in code... and check the value... its null.... – JL. Aug 27 '09 at 14:11
show 3 more comments

Needed an equivalent to String.IsNullOrEmpty(Description). Ended up with this:

<And>
  <IsNotNull>  
    <FieldRef Name='Description' />   
  </IsNotNull>  
  <Neq>  
    <FieldRef Name='Description' />  
    <Value Type='Text'></Value>  
  </Neq>
</And>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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