2011-06-06 74 views
2

在以下CAML查詢中,我在下面一行中引用0。CAML查詢始於數字問題

<Value Type='Text'>0</Value> 

即使當值爲0時,這也不起作用當它是A時它工作(對於A和0我都有條目)。我不確定爲什麼數字值沒有被拾取。

任何幫助,將不勝感激。

<Query> 
     <Where> 
     <And> 
      <Eq> 
      <FieldRef Name='TCategories' /> 
      <Value Type='Text'>Abbreviations</Value> 
      </Eq> 
      <BeginsWith> 
      <FieldRef Name='FirstCharacter' /> 
      <Value Type='Text'>0</Value> 
      </BeginsWith> 
     </And> 
     </Where> 
</Query> 

回答

2

我確實有這樣的

enter image description here 類似的查詢其實際工作對我罰款。

確保查詢「TCategories」和「FirstCharacter」中的列屬於文本類型。

謝謝,
- 代號「Santosh」