使用; CAML 查询共享点中的标记

发布于 2024-12-28 21:37:52 字数 408 浏览 1 评论 0原文

我正在使用下面的 CAML 查询,但当我运行时,它返回文档库中的所有数据,而不是仅对应于 <<价值观>在查询中指定

<Query>
<Where>
<In>
 <FieldRef Name='Entity_x0020_Served' />
<Values>
 <Value Type='Text'>Payment Solutions</Value>
 <Value Type='Text'>Third Party Processor</Value>
</Values>
</In>
</Where>
</Query>

我是否遗漏了任何内容? 谢谢, 鲁什凯什

I am using below CAML query but when I run,it returns all data from document library instead of only corresponding to the < Values> specified in the query

<Query>
<Where>
<In>
 <FieldRef Name='Entity_x0020_Served' />
<Values>
 <Value Type='Text'>Payment Solutions</Value>
 <Value Type='Text'>Third Party Processor</Value>
</Values>
</In>
</Where>
</Query>

Am I missing anything in this?
Thanks,
Rushikesh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光是把杀猪刀 2025-01-04 21:37:52

强文本此类语法在 SharePoint 2007 中不起作用,您必须将其设为or(等于“付款解决方案”,等于“第三方处理者”)。也许SPS2010中有些东西发生了变化,但我宁愿建议你以这种形式重写它。

并且您不会将 Query 元素添加到您的查询中!

<Where> 
 <Or> 
  <Eq>
     <FieldRef Name='Entity_x0020_Served' /> 
     <Value Type='Text'>Payment Solutions</Value> 
  </Eq>
  <Eq>
     <FieldRef Name='Entity_x0020_Served' /> 
     <Value Type='Text'>Third Party Processor</Value> 
  </Eq>
</Or> 
</Where> 

更新
发现这是 SPS2010 中的有效语法 (http://msdn.microsoft. com/en-us/library/ie/ff625761.aspx)。无论如何,您应该删除 Query 元素。

strong textSuch syntax would not work in SharePoint 2007, you would have to make it or(equals "Payment Solutions", equals "Third Party Processor"). Maybe something has changed in SPS2010, but I'd rather suggest you rewrite it in this form.

AND you don't add the Query element to your queries!

<Where> 
 <Or> 
  <Eq>
     <FieldRef Name='Entity_x0020_Served' /> 
     <Value Type='Text'>Payment Solutions</Value> 
  </Eq>
  <Eq>
     <FieldRef Name='Entity_x0020_Served' /> 
     <Value Type='Text'>Third Party Processor</Value> 
  </Eq>
</Or> 
</Where> 

Update
Found out this is valid syntax in SPS2010 (http://msdn.microsoft.com/en-us/library/ie/ff625761.aspx). Anyway, you should strip out the Query element.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文