BeginsWith 元素(查询)

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

适用范围: SharePoint Foundation 2010

本文内容
属性
子元素
父元素
出现次数

在包含 Text 或 Note 字段类型值的列的开头搜索字符串。

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

属性

属性

说明

N/A

子元素

FieldRefValueXML

父元素

AndExpr1Expr2OrWhere

出现次数

最小值:0

最大值:无限制

示例

下面的示例使用字符串中分配给 Query 属性的 BeginsWith 元素来返回列表(其中 Journal 列以"市/县"开头)中项的标题。

SPWeb mySite = SPControl.GetContextWeb(Context);

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

SPQuery query = new SPQuery();
query.Query = "<Where><BeginsWith><FieldRef Name="Journal"/>" + 
   "<Value Type="Note">City</Value></BeginsWith></Where>";

SPListItemCollection myItems = list.GetItems(query);

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

请参阅

引用

Contains 元素(查询)