包含元素 (查询)
适用于: SharePoint 2016 |SharePoint Foundation 2013 |SharePoint Online |SharePoint Server 2013
在存放 Text 或 Note 字段类型值的列内的任意位置搜索字符串。
<Contains>
<FieldRef Name = "Field_Name"/>
<Value Type = "Field_Type"/>
<XML />
</Contains>
元素和属性
下面各部分介绍了属性、子元素和父元素。
Attributes
无
子元素
父元素
出现次数
- 最小值:0
- 最大值:无限制
示例
以下示例使用分配给 Query 属性的字符串中的 Contains 元素返回“会议”列值以“Morning”开头并包含“讨论会话”的项目标题。
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>";
}