SPSite site = new SPSite("http://localhost:81");
SPWeb thisWeb = site.OpenWeb();
SPList personnesList = thisWeb.GetList(thisWeb.Url + "/Lists/Personnes");
SPQuery query = new SPQuery();
query.Query = "<OrderyBy><FieldRef Name='ID' Type='Counter' Ascending='True' /></OrderBy>";
SPListItemCollection personnes = personnesList.GetItems(query);
I'm trying to sort on ID but it's not working. I tried to sort on "Title" but it's not working either, I tried to get rid of the type='Counter' but still not working. I've never managed to make orderby working. Is it impossible in caml ?
I saw already that GroupBy is only for listviews and that you can't make groupby for SPListItemCollection apparently. how about orderby ?
thank you !