gpt4 book ai didi

sharepoint - CAML 查询排序不正确

转载 作者:行者123 更新时间:2023-12-04 18:35:27 24 4
gpt4 key购买 nike

谁能帮我解决这个 CAML 查询问题?当我将 Ascending 属性从 TRUE 翻转到 FALSE 时(也尝试过 TrueFalse), 它不会重新排序结果集。

CAML 的其余部分是正确的,它是由工具生成的,并且正在返回适当的结果。

<Where>
<And>
<And>
<Eq>
<FieldRef Name="Branch"/>
<Value Type="Text">Camp 1</Value>
</Eq>
<Eq>
<FieldRef Name="Type"/>
<Value Type="Choice">Day</Value>
</Eq>
</And>
<Geq>
<FieldRef Name="StartDateTime"/>
<Value Type="DateTime">2009-01-05T00:00:00Z</Value>
</Geq>
</And>
<OrderBy>
<FieldRef Ascending="TRUE" Name="Title" />
</OrderBy>
</Where>

最佳答案

OrderBy 是否必须位于 Where 子句之外?

    <Where>
<And>
<And>
<Eq>
<FieldRef Name="Branch"/>
<Value Type="Text">Camp 1</Value>
</Eq>
<Eq>
<FieldRef Name="Type"/>
<Value Type="Choice">Day</Value>
</Eq>
</And>
<Geq>
<FieldRef Name="StartDateTime"/>
<Value Type="DateTime">2009-01-05T00:00:00Z</Value>
</Geq>
</And>
</Where>
<OrderBy>
<FieldRef Ascending="TRUE" Name="Title" />
</OrderBy>

参见 http://msdn.microsoft.com/en-us/library/ms442728.aspx

关于sharepoint - CAML 查询排序不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/593863/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com