How do I create a CAML query to display all items on the list order by ItemChildCount?
Somewhat like this:
Select *
from table
order by itemChildCount descending
|
How do I create a CAML query to display all items on the list order by ItemChildCount?
Somewhat like this:
|
|||
|
|
|
I believe the OrderBy Element is what you're looking for:
Adapted from the example here: SPQuery.ViewFields Additionally, this is a useful CAML Query reference: Query Schema |
|||
|