I'm trying to use GetItems() method on a SPList and I pass SPQuery to it. The problem is, it return all the items from my SPList instead of just the filtered ones. My query looks like this:

 <WHERE><Eq><FieldRef Name='Type' /><Value Type='Text'>Analysis</Value></Eq></WHERE>

Thye typye of the'Type' column is Single line of text, which i believe translates to Text in CAML. Then I just do the standard stuff:

SPQuery q = new SPQuery();
q.Query = CAMLQuery.ToString();
var filtered = _NoticeList.GetItems(q);

filtered.Count is 4 instead of 2... perhaps someone cann se whats wrong with this code

link|improve this question

64% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I think CAML is Case sensitive so it'd have to be:

<Where><Eq><FieldRef Name='Type' /><Value Type='Text'>Analysis</Value></Eq></Where>

Otherwise you could try renaming the 'Type' field, because it might be interpreted as an internal field.

link|improve this answer
yup, <WHERE> was the problem, figured it out but i couldn't post a solution myself earlier, thanks ('Type' isn't originaly named that, I just renamed it so that it would be in english here, sorry for mix up) – matt99 Aug 4 '11 at 7:28
feedback

Your Answer

 
or
required, but never shown

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