caml Questions
7
CamlQuery query = new CamlQuery();
query.ViewXml = @"<View>"
+ "<Query>"
+ "<Where><Eq><FieldRef Name='Name' /><Value Type='Text'>"
+ fileName
+ "</Value&...
Calista asked 11/12, 2012 at 7:13
4
What is the optimal way to get a list items and their properties from a SP list using Client object model?
Here is the code I'm using.
string server = "http://localhost";
ClientContext context ...
Armor asked 16/12, 2010 at 13:51
4
Solved
Is there a "nice" way to create a CAML query for SharePoint that does something like this?
SELECT *
FROM table
WHERE Id IN (3, 12, ...)
Or am I stuck with a nightmare of nested <Or> nodes?...
Excruciating asked 11/12, 2009 at 22:33
5
Solved
I want to select a sharepoint list item which has the Maximum value for a particular column. How can I do this using CAML queries?
Franciscofranciska asked 5/2, 2009 at 14:17
6
Solved
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 items from the Year colu...
Sedum asked 18/2, 2009 at 10:39
8
Solved
I'm using caml query to select all documents which were modified or added by user. Query runs recursively on all subsites of specified site collection.
Now problem is I can't get rid of folders wh...
Conception asked 2/12, 2008 at 8:22
1
Solved
It is well-known that OCaml has a parametric polymorphism and this leads to some limitations. Haskell, through its type classes, offers an ad hoc polymorphism, which is, obviously, very convenient ...
Pulsatory asked 13/6, 2016 at 21:16
3
Solved
I am working on proof-of-concept code to dynamically generate CAML based on keywords provided to a highly-specific search web service that I am writing. I am not using the SharePoint-provided searc...
Preposterous asked 1/6, 2011 at 15:35
5
Solved
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...
Collected asked 4/12, 2008 at 15:42
4
Is there a way to do something like "NOT IN" behavior in SharePoint 2010? I can easily implement IN behavior like that:
<Where>
<In>
<FieldRef Name="ID"/>
<Values>
<...
Royall asked 20/7, 2012 at 13:30
3
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
-----...
Stature asked 11/8, 2011 at 9:31
3
Solved
I'm trying to filter Sharepoint lists based on date and time. But It only works with date, ignores the time in data and time field.
Claustral asked 21/8, 2013 at 16:26
7
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.
Her...
Xiphoid asked 13/10, 2009 at 0:36
5
Solved
I'm trying to download the fantastic U2U Caml Query Builder but all the links I'm finding are dead and I can't find any references to it on the u2u site. Has it been end-of-lifed? Does anyone...
Deplume asked 7/5, 2013 at 13:52
3
Solved
I have already created a webpart to show the data from list, but I really want is to only show top 5 records from that list (by using CAML query).
Does anyone know how to do this? Many thanks.
&...
Hanoverian asked 5/5, 2009 at 10:8
3
Solved
Hi I have a SharePoint list to be queried for my Desktop App and I want to retrieve only the Active Members but when I queried I got only the users who aren't active. What is wrong with my CAML que...
Anorexia asked 27/6, 2012 at 5:11
2
I am looking for a way to define global variables in ocaml so that i can change their value inside the program. The global variable that I want to user is:
type state = {connected : bool ; current...
Inventive asked 10/12, 2013 at 20:52
4
I am using camel query in visual studio c# to get items from a list from sharepoint 2010. The list items has two fields that I want to use in the caml query. One is "Section" and the other is "Orde...
Emendate asked 17/11, 2012 at 1:35
2
Solved
I've checked articles on here and Googled till I'm blue in the finger tips. I've read and read and read and just can't seem to wrap my head around CAML Joins in Sharepoint2010.
Question: Can som...
Francisco asked 10/8, 2012 at 18:47
1
Solved
Today I came across the need to write a CAML query that uses WHERE [Field] IN [Values]. I wanted to query a List where the list item's Title was contained by a collection of strings. After receivin...
Kathikathiawar asked 25/6, 2012 at 22:15
6
Solved
I have a SharePoint external list that points to a 100,000 record SQL table. I have to set a filter on the Read List Operation otherwise the list doesnt work. It will timeout as it tries to return ...
Helenahelene asked 25/8, 2011 at 4:37
2
Solved
Hey, I have a form for administrators where they insert a user name ("domain\name") and the code gets and sets some information out of it.
It's a huge project and some of the lists contain the us...
Lighterman asked 20/5, 2010 at 12:7
1
Solved
Should this CAML be working. (I tried it with u2u and it does not display the URL column.) I get this error. {System.ApplicationException} = {"One or more field types are not installed properly. Go...
Closefisted asked 14/3, 2011 at 15:39
1
Solved
I have this table
Col1 | Col2 | Col3
1 MeYou | You | Them
2 Them | They | You
3 Them | Me | They
4 They | Us | We
5 Us | Them | MeAsk
I would like to do these Query
Select all rows from M...
Mullen asked 10/3, 2011 at 3:32
1
Solved
I have a SharePoint 2010 Farm solution that deploys a list, and a web part that reads from that list. It actually does more than that, but I can't get past the "read the list" part.
I'm able to su...
Trepang asked 10/2, 2011 at 22:56
1 Next >
© 2022 - 2024 — McMap. All rights reserved.