使用 Caml 或 SPQuery 通过标题字段从共享点列表中获取项目,忽略注意
我想使用 CAML 从 SharePoint 列表中获取数据,并按标题进行过滤,忽略大小写,例如
<Query>
<Where>
<Eq>
<FieldRef Name='Title' />
<Value Type='Text'>Car</Value>
</Eq>
</Where>
</Query>
但忽略大小写,因此如果我有一个标题为: car
的项目,caml 应该返回它 我该怎么做?
I want to get data from SharePoint List using CAML and filtered by Title with ignore case like
<Query>
<Where>
<Eq>
<FieldRef Name='Title' />
<Value Type='Text'>Car</Value>
</Eq>
</Where>
</Query>
But with ignore case so if i have an item with title: car
the caml should return it
how can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现它默认忽略大小写。
I found out it's ignoring case by default.