Trying to fetch data from SharePoint List using CAML query.
Am using the attribute Descending, but does not work as expected.
Please find the code below.
<OrderBy>
<FieldRef Name='ID' Descending = 'True'/>
</OrderBy>
Above code still fetches the smallest ID(where ID is 1,2,3..so on), in my case it fetches the ID=1
Thanks in advance.