BeginsWith 要素 (クエリ)
Text または Note フィールド型の値を保持する列の先頭にある文字列を検索します。
<BeginsWith>
<FieldRef Name = "Field_Name"/>
<Value Type = "Field_Type"/>
<XML />
</BeginsWith>
属性
属性 |
説明 |
---|---|
なし |
該当なし |
子要素
親要素
出現回数
最小 : 0 最大 : 制約なし |
例
次の例では、Query プロパティに設定された文字列に対して BeginsWith 要素を使い、Journal 列の先頭が "City" であるリスト アイテムの題名を検索しています。
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>";
}