Click here to Skip to main content
15,884,472 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hi..
I am trying to learn windows phone development.
After going through tutorials on the internet , i am making an DataBound App.

so far, i have created an database and an DataContext of the db. and using it to populate the LongListSelector as follows

VB
Protected Overrides Sub OnNavigatedTo(e As NavigationEventArgs)
       Using d As New TestContext(TestContext.ConnectionString)
           d.CreateIfNotExists()
           d.LogDebug = True

           MainLongListSelector.ItemsSource = d.Routes.ToList
       End Using


I wanted to know how to populate the LongListSelector with sorted Routes based on RouteName

thanks
Posted
Updated 5-Jul-15 1:00am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900