• 学习:New in SharePoint 2010 CAML Query <IN>,<INCLUDES> &< NOT INCLUDES>(转)


    Even though Microsoft encourages using LINQ in SharePoint 2010, they introduced some new CAML Query schema elements. They are

    · IN

    · INCLUDES

    · NOT INCLUDES

    IN:

    This is something work as same as what we see in SQL Query. We can provide a collection of Items to filter. Previously in SharePoint 2007 we have to use OR operator to do this.. But using OR for multiple times for multiple values will lead to lack in code clarity. So IN operator is considering as good.

    Here I have following SharePoint List.

    In the above list if want to select the items having designation like Engineer and Architect I have to write like this in SharePoint 2007.

    01 <Where>
    02   
    03 <Or>
    04   
    05 <Eq>
    06   
    07 <FieldRef Name='Designation' />
    08   
    09 <Value Type='Text'>Engineer</Value>
    10   
    11 </Eq>
    12   
    13 <Eq>
    14   
    15 <FieldRef Name='Designation' />
    16   
    17 <Value Type='Text'>Architect</Value>
    18   
    19 </Eq>
    20   
    21 </Or>
    22   
    23 </Where>

    The above can be written in SharePoint 2010 as

    01 <Where>
    02   
    03 <In>
    04   
    05 <FieldRef Name='Designation' />
    06   
    07 <Values>
    08   
    09 <Value Type='Text'>Engineer</Value>
    10   
    11 <Value Type='Text'>Architect</Value>
    12   
    13 </Values>
    14   
    15 </In>
    16   
    17 </Where>
    Both will yield the same output as shown below.

    INCLUDES:

    MSDN Def: If the specified field is a Lookup field that allows multiple values, specifies that the Value element is included in the list item for the field that is specified by the FieldRef element.

    If you did not understand the above definition from MSDN, check the following example.

    Here is a sample Employee list.

    Here Specialization is a MultiSelect Lookup column.

    I need to select People who are specialized in XML first and then specialized .Net also. This can be done using Includes.

    SPQuery needs to framed like this

    01 <Where>
    02   
    03 <And>
    04   
    05 <Eq>
    06   
    07 <FieldRef Name=""Specialization""/>
    08   
    09 <Value Type=""Lookup"">XML</Value>
    10   
    11 </Eq>
    12   
    13 <Includes>
    14   
    15 <FieldRef Name='Specialization'/>
    16   
    17 <Value Type='Lookup'>.Net</Value>
    18   
    19 </Includes>
    20   
    21 </And>
    22   
    23 </Where>
    Then the specified output will be

    NOTINCLUDES:

    It will do opposite to what Includes will do.

    In the above list I like to have all the people who are specialized in SQL Server but not specialized in Crystal Report.

    Here my SPQuery

    01 <Where>
    02   
    03 <And>
    04   
    05 <Eq>
    06   
    07 <FieldRef Name=""Specialization""/>
    08   
    09 <Value Type=""Lookup"">SQL Server</Value>
    10   
    11 </Eq>
    12   
    13 <NotIncludes>
    14   
    15 <FieldRef Name='Specialization'/>
    16   
    17 <Value Type='Lookup'>Crystal Report</Value>
    18   
    19 </NotIncludes>
    20   
    21 </And>
    22   
    23 </Where>

    Note: As you see in <IN> operation you have <Values> as the child. Here we can specify multiple items. In the MSDN they specify it is apply to <Includes> and <NotIncludes>. But it is not working. I don’t know. Why?

    Come From: http://rmanimaran.wordpress.com/2011/03/11/new-in-sharepoint-2010-caml-query/

  • 相关阅读:
    vscode使用SSH Targets连接远程系统进行开发
    python2.7版本安装pip
    ubuntu系统安装最新版本nodejs
    win7安装yarn后执行报错
    Object合并,并使用默认值处理
    解决JSON.stringify序列化循环依赖对象报错
    docker环境下安装maven私服和gitlab
    单例模式的无锁实现
    【Java学习笔记】Java的垃圾回收机制
    Ubuntu下源码安装Python
  • 原文地址:https://www.cnblogs.com/LeimOO/p/2178455.html
Copyright © 2020-2023  润新知