Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/wix/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Sharepoint 2010 CAML中的isnull和in语句_Sharepoint 2010_Caml - Fatal编程技术网

Sharepoint 2010 CAML中的isnull和in语句

Sharepoint 2010 CAML中的isnull和in语句,sharepoint-2010,caml,Sharepoint 2010,Caml,是否可以将sharepoint语句与该语句合并?我只是设法让它工作使用了一个,但如果你能把它直接放在里面就太好了 谢谢解决方案如下: <Query> <Where> <In> <FieldRef Name='MyLookupField' LookupId='TRUE'/> <Values> <Value Type='Lookup'></Val

是否可以将sharepoint语句与该语句合并?我只是设法让它工作使用了一个,但如果你能把它直接放在里面就太好了


谢谢

解决方案如下:

<Query>
   <Where>

      <In>
         <FieldRef Name='MyLookupField' LookupId='TRUE'/>
         <Values>
           <Value Type='Lookup'></Value>
           <Value Type='Lookup'>1</Value>
         </Values>
      </In>

   </Where>
</Query>