User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T15:12:55Z http://stackoverflow.com/feeds/user/36236 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/278471/the-application-sorts-strings-differently-than-the-database 2 The application sorts strings differently than the database abutnaru 2008-11-10T16:58:49Z 2008-11-10T21:04:33Z <p>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 Products order by ProductName</p> <p>Unfortunately, the application sorting behaves differently than the database sorting. It is probably related to the collation: the database has an SQL_Latin1_General_CP1_CI_AS collation.</p> <p>How can I make the application sort these strings exactly like the database does?</p> <p>Thanks.</p> <p><hr /></p> <p>UPDATE: I finally obtained a good result by using the code from the comments below, and changing the compare options to Ordinal:</p> <p>private CompareOptions myOptions = CompareOptions.Ordinal ;</p> <p>Also, this link contains some very useful information related to SQL collations: <a href="http://blogs.msdn.com/michkap/archive/2005/11/08/490305.aspx" rel="nofollow">http://blogs.msdn.com/michkap/archive/2005/11/08/490305.aspx</a></p> http://stackoverflow.com/questions/278471/the-application-sorts-strings-differently-than-the-database/278653#278653 0 Answer by abutnaru for The application sorts strings differently than the database abutnaru 2008-11-10T17:58:59Z 2008-11-10T17:58:59Z <p>Thanks. It does not work yet, but this is probably the right direction. Here is the code I am trying now:</p> <p>((List)orderDetails).Sort(new OrderDetailComparer());</p> <p>where OrderDetailComparer is:</p> <pre><code>public class OrderDetailComparer : IComparer&lt;OrderDetail&gt; { private CompareInfo myComp = CompareInfo.GetCompareInfo("en-US"); private CompareOptions myOptions = CompareOptions.StringSort; public int Compare(OrderDetail a, OrderDetail b) { if (a == b) return 0; if (a == null) return -1; if (b == null) return 1; return myComp.Compare ( a.Product.ProductNameForSorting, b.Product.ProductNameForSorting, myOptions ); } } </code></pre> <p>Still no result.</p> <p>What do you think? How do I get the information from the database, to know what culture I should use?</p> <p>Thanks.</p>