Contains 元素(查询)

上次修改时间: 2015年3月9日

适用范围: SharePoint Foundation 2010

本文内容
属性
子元素
父元素
发生次数

在存放 Text 或 Note 字段类型值的列内的任意位置搜索字符串。

<Contains>
  <FieldRef Name = "Field_Name"/>
  <Value Type = "Field_Type"/>
  <XML />
</Contains>

属性

属性

说明

N/A

子元素

FieldRefValueXML

父元素

AndExpr1Expr2OrWhere

发生次数

最小值:0

最大值:无限制

示例

下面的示例使用分配给 Query 属性的字符串内的 Contains 元素,以返回其中"Conference"列值以"Morning"开始且包含"discussion session"的项的标题。

SPWeb mySite = SPControl.GetContextWeb(Context);

SPList list = mySite.Lists["List_Name"];

SPQuery query = new SPQuery();
query.Query = "<Where><And><BeginsWith><FieldRef Name="Conference"/>" + 
   "<Value Type="Note">Morning</Value></BeginsWith>" + 
      "<Contains><FieldRef Name="Conference" />
   <Value Type="Note">discussion session</Value>" + 
      "</Contains></And></Where>";

SPListItemCollection myItems = list.GetItems(query);

foreach (SPListItem item in myItems)
{
   Label1.Text += item["Title"] + "<BR>";
}

请参阅

引用

BeginsWith 元素(查询)