使用 CAML 在 SharePoint 2010 列表中搜索附件

发布于 2024-12-12 04:52:56 字数 389 浏览 0 评论 0原文

我需要有关搜索附件(即 Word 文档、PDF 等)的帮助,这些附件是在使用 CAML 查询在 SharePoint 2010 中插入项目期间附加到列表的。 我尝试使用此查询,

<Query>
   <Where>
        <Eq>
             <FieldRef Name="Attachments" />
             <Value Type="Attachments">WordDocument1.docx</Value>
        </Eq>
   </Where>
</Query>

如果我给出此查询,则无法获得任何结果。 请帮忙。

I need help on searching attachments i.e Word Document, PDF etc which are attached to the list during inserting Item in SharePoint 2010 using CAML queries.
I tried with this query

<Query>
   <Where>
        <Eq>
             <FieldRef Name="Attachments" />
             <Value Type="Attachments">WordDocument1.docx</Value>
        </Eq>
   </Where>
</Query>

im not able to get any results if i give this query.
Please help.

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

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

发布评论

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

评论(1

审判长 2024-12-19 04:52:57

这里的问题是 SharePoint 列表的“附件”字段本身不存储附件。此列仅返回某个列表项是否有附件或
不。
附件不存储在 SharePoint 列表中。因此,我认为不可能使用 CAML 查询来检索它们。

The problem here is that the Attachments field of a SharePoint list does not store the attachments itself. This column only return whether a certain list item has an attachment or
not.
The attachments are not stored in a SharePoint list. Therefore I don't think it's possible to retrieve them with a CAML query.

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