The application sorts strings differently than the database - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T16:11:31Zhttp://stackoverflow.com/feeds/question/278471http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/278471/the-application-sorts-strings-differently-than-the-database2The application sorts strings differently than the databaseabutnaru2008-11-10T16:58:49Z2008-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/278557#2785574Answer by Mladen Prajdic for The application sorts strings differently than the databaseMladen Prajdic2008-11-10T17:26:13Z2008-11-10T17:26:13Z<p>you'll probably need to use the culture you wish to sort in. Look at the example of the StringComparer:
<a href="http://msdn.microsoft.com/en-us/library/system.stringcomparer.currentculture.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.stringcomparer.currentculture.aspx</a></p>
http://stackoverflow.com/questions/278471/the-application-sorts-strings-differently-than-the-database/278653#2786530Answer by abutnaru for The application sorts strings differently than the databaseabutnaru2008-11-10T17:58:59Z2008-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<OrderDetail>
{
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>