使用 CAML 在 SharePoint 2010 列表中搜索附件
我需要有关搜索附件(即 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的问题是 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.