0

我正在使用 caml 查询从共享点列表中检索数据。问题是查询在不应该返回一条记录时,只有当我在自己的代码中使用此查询时才会发生这种情况。当我使用相同的查询时,在 U2U Caml Query Builder 的同一个列表中它可以正常工作。

我的查询是这样的:

<Query><Where><Eq><FieldRef Name="Account_x0020_Verification_x0020" /><Value Type="Text">211edd1d11844d6c9f21d7930683caba</Value></Eq></Where></Query>

我用来启动它的 vb.net 代码是这样的:

 Dim oUserAccStatusList As SPList = oElevatedSPWeb.Lists(sListName)
                Dim oSPQuery As New SPQuery
                oSPQuery.Query = "<Query><Where><Eq><FieldRef Name='Account_x0020_Verification_x0020' /><Value Type='Text'>" + _sUserID + "</Value></Eq></Where></Query>"
                Dim oItems As SPListItemCollection = oUserAccStatusList.GetItems(oSPQuery)
                If oItems.Count <= 0 Then

Items.Count 是 1,其中有一条用户 ID 与我要求的不同的记录。有谁知道发生了什么,为什么会这样?

4

1 回答 1

1

从 oSPQuery.Query 属性中删除查询节点。

oSPQuery.Query = "<Where><Eq><FieldRef Name='Account_x0020_Verification_x0020' /><Value Type='Text'>" + _sUserID + "</Value></Eq></Where>"
于 2010-02-18T01:03:01.007 回答