2
votes
2answers
126 views
The application sorts strings differently than the database
I am trying to sort a list of products by their name in a .Net application written in C#, to obtain the same list that I would get from an SQL Server database through an order by:
select * from Pro …
0
votes
The application sorts strings differently than the database
Thanks. It does not work yet, but this is probably the right direction.
Here is the code I am trying now:
((List)orderDetails).Sort(new OrderDetailComparer());
where OrderDetailComp …
