使用CAML查询获取特定的SharePoint Office 365列表项目?
我正在创建一个示例程序来检查Sharepoint列表中的ListItem存在。
我的SharePoint列表有一个名为'Title'的列(字段),或者它可以是具有文本类型的任何其他名称。
我知道,当我们在SharePoint中为列表中的每个项目创建列表时,“ID”字段由SharePoint列表项本身分配。 我使用Microsoft.SharePoint.Client和Microsoft.SharePoint.Client.Runtime dll在C#中创建示例应用程序。
问题:我想使用CAML查询根据“标题”列的值获取列表中的特定项目。 我的列表可能包含数千个项目, 使用CAML查询:
"<View><Query><Where><Leq>" +
"<FieldRef Name='ID'/><Value Type='Number'>100</Value>" +
"</Leq></Where></Query><RowLimit>7000</RowLimit></View>"
我正在成功检索ListItemCollection并抛出,我可以得到ListItem。 但其非常耗时且效率低下的方式,遍历整个列表以获得特定项目。
尽管可以通过使用CAML查询的ID字段获得列表中的特定项目,但由于我不知道项目的ID是什么,因此我想通过我的“标题”字段获取它, 对于此i尝试了以下CAML查询 `
CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = "<View><Query><Where><eq>" +
"<FieldRef Name='TITLE'/><Value Type='TEXT'>2</Value>" +
"</eq></Where></Query></View>";`
但是当我运行代码时,我会得到以下异常
1.价值不在预期范围内。 当我试图在FieldRef Name参数中通过'Title'而不是'ID'字段获取Item时,会生成此异常。
2.当我在列表中手动创建一个coloumn并将其传递到FieldRef Name参数中时,一个或多个字段类型安装不正确
我的代码片段如下
class sharepoint1
{
ClientContext context = null;
string OBJECTMETATADTA_ID = "Title";
private class Configuration
{
public static string ServiceSiteUrl = "";
public static string ServiceUserName = "";
public static string ServicePassword = "";
}
private ListItemCollection getListItemCollectionFromSP(String listName)
{
Web oWebsite = context.Web;
ListCollection collList = oWebsite.Lists;
List oList = collList.GetByTitle(listName);
CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = "<View><Query><Where><eq>" +
"<FieldRef Name='Title'/><Value Type='Text'>abc</Value>" +
"</eq></Where></Query></View>";
ListItemCollection collListItem = oList.GetItems(camlQuery);
context.Load(collListItem,
items => items.IncludeWithDefaultProperties(
item => item.DisplayName));
context.ExecuteQuery();
return collListItem;
}
ListItem checkItem(string listname, string fileName)
{
ListItem result = null;
ListItemCollection collListItem =
getListItemCollectionFromSP(listname);
string itemName = fileName.Substring(0, 3);
foreach (ListItem oListItem in collListItem)
{
if (oListItem[OBJECTMETATADTA_ID].Equals(itemName))
{
{
// my business logic;
}
}
}
context.Dispose();
return result;
}
}
如果我从了解这个问题的人那里得到关于这个问题的一些帮助,那将是非常棒的。
你在查询中是否用'Eq'而不是'eq'来尝试? CAML查询区分大小写
链接地址: http://www.djcxy.com/p/64147.html上一篇: To fetch a specific SharePoint Office 365 list item using CAML query?