i’ve got some records from a query like this
SortingCode (column)
Row: 00-005
Row: 00-000
the folowing code, doesn’t sort this …
var items =
from c in table
orderby c.SortingCode
select c;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will have to explain what result you are expecting, because the following code
Do output
Which seem well sorted for me. What result are you expecting?