Sharepoint:限制caml查询中的结果

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sharepoint:限制caml查询中的结果相关的知识,希望对你有一定的参考价值。

First option uses a parameter in <a href="http://snipplr.com/view/46534/reading-and-writing-list-data-in-sharepoint-2010-using-spservices/">spservices method</a> to limit the results to four. Second option limits the results returned to six in the caml query iteslf using the &lt;RowLimit&gt; property.
  1. CAMLRowLimit: 4,
  2.  
  3. <Query><Where><Eq><FieldRef Name="Active" /><Value Type="Boolean">1</Value></Eq></Where><RowLimit>6</RowLimit></Query>

以上是关于Sharepoint:限制caml查询中的结果的主要内容,如果未能解决你的问题,请参考以下文章

SharePoint CAML 查询在生成器中有效,但在代码中无效

Sharepoint 的 CAML 查询中的日期时间比较

SharePoint:如何使用列表中的 CAML 查询获取前 5 条记录

Sharepoint Online 突出显示的内容 Web 部件 - 显示文件子文件夹 CAML 查询

入门者必看!SharePoint之CAML总结(实战)

SharePoint服务器端对象模型 之 使用CAML进展数据查询