标签:style color ar 2014 代码 sp c ef type
用U2U工具生成计算列比较大小的代码如下:
<Where>
<Geq>
<FieldRef Name=‘Year‘ />
<Value Type=‘Calculated‘>2014</Value>
</Geq>
</Where>
但是这种比较大小的方式有时会得不到想要的结果,如果计算列是数字,要比较大小的话,最好手动换成如下代码:
<Where>
<Geq>
<FieldRef Name=‘Year‘ />
<Value Type=‘Number‘>2014</Value>
</Geq>
</Where>
标签:style color ar 2014 代码 sp c ef type
原文地址:http://www.cnblogs.com/TroubleShooting/p/3958490.html