CAML查询到SharePoint列表返回整个集

时间:2014-04-03 19:34:21

标签: c# sharepoint-2010 caml

我遇到了一个问题,如果我在C#中执行CAML查询,我的ListItemCollection包含整个列表。这是一个片段 我擦过的代码也许你可以看到我做错了什么。 在调试时,我发现生成的XML是我从文件中读取的值所期望的。似乎有一个问题 实际上进行查询并加载结果。我这样做的步骤对我来说似乎不对,我觉得我错过了一步。

using Microsoft.SharePoint.Client;
...
System.Net.NetworkCredential credentials = new System.Net.NetworkCredential(user, password, domain);
ClientContext clientContext = new ClientContext(uri);
clientContext.Credentials = credentials;
List list = clientContext.Web.Lists.GetByTitle(listName);
//read line of input from file and save to string[]
CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = "<Query><Where><And><Eq><FieldRef Name=\"Entity\" /><Value Type=\"Text\">" + columns[2].Trim() + "</Value></Eq><And><Eq><FieldRef Name=\"Title\"/><Value Type=\"Text\">" + columns[0].Trim() + "</Value></Eq><Eq><FieldRef Name=\"Section\" /><Value Type=\"Text\">" + columns[1].Trim() + "</Value></Eq></And></And></Where></Query>";
ListItemCollection listItems = list.GetItems(camlQuery);
clientContext.Load(listItems);
clientContext.ExecuteQuery();

2 个答案:

答案 0 :(得分:9)

在SharePoint CSOM中,CamlQuery.ViewXml property的根元素为<View>,例如:

public CamlQuery CreateInventoryQuery(string searchSku)
{
   var qry = new CamlQuery();
   qry.ViewXml =
      @"<View>
         <Query>
          <Where>
            <BeginsWith>
              <FieldRef Name='SKU' />
              <Value Type='Text'>" + searchSku + @"</Value>
            </BeginsWith>
          </Where>
        </Query>
       </View>";
   return qry;
}

参考

Using the Client Object Model

答案 1 :(得分:1)

因此经过长时间的搜索后我确定这是CAML查询本身的一个问题。显然我需要用一个VIEW标签包含XML,否则它甚至不执行查询。以下更改实际上是出于某种原因。

camlQuery.ViewXml = "<View><Query><Where><And><Eq><FieldRef Name=\"Entity\" /><Value Type=\"Text\">" + columns[2].Trim() + "</Value></Eq><And><Eq><FieldRef Name=\"Title\"/><Value Type=\"Text\">" + columns[0].Trim() + "</Value></Eq><Eq><FieldRef Name=\"Section\" /><Value Type=\"Text\">" + columns[1].Trim() + "</Value></Eq></And></And></Where></Query></View>";

Solution source