I'm new to Linq, what's the syntax for orderby in VB?
Dim cxt As New datContext
Dim qry = (From lst In cxt.zipcodes _
Select lst.state).Distinct
qry = qry.OrderBy()
my simple sql statement will be like this:
Select distinct state from zipcodes
order by State