SharePoint:如何使用 CAML 查询从列表中获取前 5 条记录
我已经创建了一个 Web 部件来显示列表中的数据,但我真正想要的是仅显示该列表中的前 5 条记录(通过使用 CAML 查询)。
有谁知道如何做到这一点? 非常感谢。
<Query>
<OrderBy>
<FieldRef Name='ID' Ascending='False' />
</OrderBy>
</Query>
I have already created a webpart to show the data from list, but I really want is to only show top 5 records from that list (by using CAML query).
Does anyone know how to do this? Many thanks.
<Query>
<OrderBy>
<FieldRef Name='ID' Ascending='False' />
</OrderBy>
</Query>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以设置 SPQuery 对象的 RowLimit 属性。
标记位于视图的架构定义中(<View>
的直接子级),因此不能嵌套在内;
标签。You could set the RowLimit property of your SPQuery object.
The
<RowLimit>
tag is in the schema definition of a view (direct child of <View>
) and therefore cannot be nested inside a<Query>
tag.以下代码显示列表中的前 5 条记录(通过使用 CAML 查询)。
The below code shows top 5 records from the list (by using CAML query).
如果您想构建其他简单的 caml 查询,请尝试此工具。
http://www.camldesigner.com/
Ps 工具不会使用 SPListItemCollectionPosition 构造“分页”caml 查询。
If you want to construct other simply caml queries try this tool.
http://www.camldesigner.com/
P.s. tool doesn`t construct a "paginate" caml queries with SPListItemCollectionPosition.