R
Ryan H
Given 2 records with 1 'Name' column (varchar):
"Tri-Star"
"Triangle"
GridView.Sort("Name", SortDirection.Ascending) will sort the records like
so:
1. "Triangle"
2. "Tri-Star"
While a standard SQL 'SELECT * FROM MyTable ORDER BY Name ASC' will sort the
records like so:
1. "Tri-Star"
2. "Triangle"
This is lame. Is there a fix for this?
"Tri-Star"
"Triangle"
GridView.Sort("Name", SortDirection.Ascending) will sort the records like
so:
1. "Triangle"
2. "Tri-Star"
While a standard SQL 'SELECT * FROM MyTable ORDER BY Name ASC' will sort the
records like so:
1. "Tri-Star"
2. "Triangle"
This is lame. Is there a fix for this?