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 <RowLimit> property.
CAMLRowLimit: 4, <Query><Where><Eq><FieldRef Name="Active" /><Value Type="Boolean">1</Value></Eq></Where><RowLimit>6</RowLimit></Query>
以上是关于Sharepoint:限制caml查询中的结果的主要内容,如果未能解决你的问题,请参考以下文章
SharePoint CAML 查询在生成器中有效,但在代码中无效
SharePoint:如何使用列表中的 CAML 查询获取前 5 条记录