针对以下条件的 SharePoint CAML 查询
任何人都可以告诉我以下条件的 CAML 查询是什么:
[[Col1=22 And Col2=23] OR [Col3=Yes] ] And [ [Col4=16] OR [Col5=56 ] ]
其中 Col1、Col2、Col3、Col4、Col5 是我的列表的列,22,23,是的 16 和 56 是一些模拟值。
提前致谢! 萨钦
Can any one tell me what would me the CAML query for the following condition
[[Col1=22 And Col2=23] OR [Col3=Yes] ] And [ [Col4=16] OR [Col5=56 ] ]
Where Col1,Col2,Col3,Col4,Col5 are the columns of my list and 22,23,Yes 16 And 56 are some mock values.
Thanks in advance!
Sachin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效。基本上,您必须开始在括号外使用 AND 编写查询,然后按照自己的方式进行分组。
This should work. Basically, you have to start writing the query with the AND outside the parenthesis and work your way into the groupings.