Tagged Questions

6
votes
6answers
10k views

CAML query that includes folders in result set

I'm trying to write a CAML query that executes against a specific SPList, scoped to a specific folder, recursive from that point, and returns all ListItems (which meet a criteria) and Folders. Here's ...
4
votes
4answers
11k views

What is the best way to retrieve distinct / unique values using SPQuery?

I have a list that looks like: Movie Year ----- ---- Fight Club 1999 The Matrix 1999 Pulp Fiction 1994 Using CAML and the SPQuery object I need to get a distinct list of ...
3
votes
1answer
1k views

Get items from sharepoint list by Title field with ignore care using Caml or SPQuery

I want to get data from SharePoint List using CAML and filtered by Title with ignore case like <Query> <Where> <Eq> <FieldRef Name='Title' /> ...
2
votes
1answer
401 views

How to get all folders in a SPList, then checking permission “Contribute” for current user

I have a sharepoint list like that: List ---------Folder 1 -----------------Item 1 -----------------Item 2 ---------Folder 2 -----------------Item 1 -----------------Item 2 ---------Folder 3 ...
1
vote
3answers
412 views

CAML JOINS using SharePoint

Assume that there are Emp and Dept tables. Emp Table has EmpID FirstName LastName DeptName Email Dept table has DeptID DeptName i have to display all the employee details based on DeptName ...
1
vote
0answers
398 views

SharePoint 2010 CAML Query fails when indexed columns used

I have an SPQuery that has been working fine until my list hit 500 items. q.Query = "" + DefectID + ""; This was successfully returning 1 item where DefectID matched my provided value. Once the list ...
0
votes
0answers
202 views

SPQuery : OrderBy not working

SPSite site = new SPSite("http://localhost:81"); SPWeb thisWeb = site.OpenWeb(); SPList personnesList = thisWeb.GetList(thisWeb.Url + "/Lists/Personnes"); SPQuery ...
0
votes
2answers
909 views

SPQuery : Joining lists and where in the foreign list

Hello Sharepoint developers ! Have you ever tried to do a join between lists and in both of those lists needed to place a where clause? I can do it in the first list, but can't find out how to place ...
0
votes
1answer
342 views

SharePoint: Validating SPQuery

I am writing an internal API for my company which allows users to pass in SharePoint CAML query. In side my function I take to user's query, and add some additional elements to it and then use the ...
0
votes
2answers
2k views

How do I get recurring SharePoint Calendar List Items

Im running this query on the same server as the web application, so SPQuery.ExpandRecurrence should work. However, with the following I only get 3 items in the returned list collection vs. the 3 ...