开发者

Sharepoint. Use CAML query to search items

开发者 https://www.devze.com 2023-03-09 19:51 出处:网络
I开发者_如何学JAVA need to search items inside one list. Can i use CAML query? Case need to be ignored and it should find word inside text... Or CAML not for that purposes? You can use this CAML query

I开发者_如何学JAVA need to search items inside one list. Can i use CAML query? Case need to be ignored and it should find word inside text... Or CAML not for that purposes?


You can use this CAML query:

<Where>
  <Contains>
    <FieldRef Name='FilterField' />
    <Value Type='Text'>FilterValue</Value>
  </Contains>
<Where>

The contains operator matches items with "FilterValue" in the given field.

0

精彩评论

暂无评论...
验证码 换一张
取 消