vote up 1 vote down star

Hallo,

in CAML i can query SharePoint Listitems using the "Contains"-element - but there is no "does not contain"-element i could use.

So what is the best way to get the items that do not contain a string?

Is there a better way than to loop through each and every item?

Thanks in advance!

flag

3 Answers

vote up 1 vote down check

The same restriction applies to BeginWith. I do not know any good solution sadly. What you could do: Do a Contains-Query, loop through each item and get the IDs, then do another big query for "ID NotEqual 1 or ID NotEqual 2 or ID NotEqual 3......" Since ID is indexed as far as I know, that should have a smaller impact on the database, but it still smells really bad.

For small list it does not matter, for larger lists i'd use the SQL Server Profiler to see what the impact is.

link|flag
vote up 0 vote down

This problem with 'Contains' and 'BeginsWith' bothers me also. I hope that in next version of Sharepoint caml will be extended to be real tool, not just a rock on our leg.

The way I do it is to specify query as much as possible and then filter rows which don't match conditions in C# code. It is quite ugly sometimes as you sometimes have to process 100 rows to end with 1 result that match conditions.

link|flag
vote up 0 vote down

@drax: let's hope CAML goes away - period. It is definitely one of the worst aspects of current SP programming.

link|flag
That would be nice but there are many parts of the product built on it! – Alex Angas Dec 5 '08 at 11:25
CAML as a List Definition language (ONET.xml) is quite usable. CAML as an SQL Replacement is a joke, and not even a good one. – Michael Stum Dec 8 '08 at 19:14

Your Answer

Get an OpenID
or

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