学习: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>

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>

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/

转载于:https://www.cnblogs.com/LeimOO/archive/2011/09/16/2178455.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值