How to query the SPView object
- by Hugo Migneron
I have a SPView object that contains a lot of SPListItem objects (there are many fields in the view).
I am only interested in one of these fields. Let's call it specialField
Given that view and specialField, I want to know if a value is contained in specialField.
Here is a way of doing what I want to do :
String specialField = "Special Field";…