views:

14

answers:

1

Hi, I am trying to sort (ORDER BY ) a subsonic DAL collection

New templateController.FetchAll().OrderByDesc("Name")

But it is not sorting. Am I missing something?

A: 

Used this as a solution

New SubSonic.Select().From(Templatedata.Schema).OrderAsc("Name").ExecuteTypedList(Of Templatedata)()
Saif Khan