I am making a visual web part for sharepoint 2010. I have a SPFolder object and I want to get all items in it, but I want to sort it by a specific field. I want to do this by CAML query instead of using a view.
I am currently doing this by return library.GetItemsInFolder(library.DefaultView, folder);. It doesn't seem to contain a parameter for a CAML query.
Does anyone know how to do this?
Thanks.