Sharepoint 聚合列表

发布于 2024-12-14 10:13:11 字数 198 浏览 2 评论 0原文

我正在尝试汇总不同列表类型的结果。使用 Sharepoint 设计器中的“连接”功能并不能解决问题。我想要实现的是 eq.在 T-SQL 中“选择 x AS y”。

例如 - 一种列表类型中不存在“标题”列,但存在“名称”列。 我想要做的就像在 SQL 中一样:“选择名称作为标题” 我尝试过研究 CAML 但没有运气。

非常感谢

V

I'm trying to aggregate results from different list types. Using Join feature in Sharepoint designer won't cut it. What I want to achieve is eq. to in T-SQL "Select x AS y".

For example - The column "Title" doesn't exist in one list type but the column "Name" does.
What I want to do is as I would in SQL: "Select Name as Title"
I've tried looking into CAML but no luck there.

Much appreciated

V

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

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

发布评论

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

评论(1

卖梦商人 2024-12-21 10:13:11

您可以使用 Camelot .NET Connector for SharePoint 来实现此目的,该连接器位于 http://www.bendsoft .com/net-sharepoint-connector/

使用它时,您可能会质疑您的 SharePoint 列表和文档库,就好像它们是普通 SQL 表一样。

IE。

SELECT LinkTitle as Title, CreatedDate as `Created Date`, ID as `List item id` FROM WhatEverListYouLike WHERE ID > 10

还有预定义的函数来处理最常见的文档操作,例如 FileUpload 和 FileDownload。文档中介绍了这些内容 - http://docs.bendsoft.com/camelot -net-connector/最新/程序/

You could achieve this using the Camelot .NET Connector for SharePoint, available at http://www.bendsoft.com/net-sharepoint-connector/

When using it you may question your SharePoint lists and document libraries as if they where ordinary SQL tables.

Ie.

SELECT LinkTitle as Title, CreatedDate as `Created Date`, ID as `List item id` FROM WhatEverListYouLike WHERE ID > 10

There are also predefined functions to handle most common operations of documents like FileUpload and FileDownload. These are covered in the documentation - http://docs.bendsoft.com/camelot-net-connector/latest/procedures/

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