Ignoring accents in SQL Server using LINQ to SQL - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T05:14:20Z http://stackoverflow.com/feeds/question/322441 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/322441/ignoring-accents-in-sql-server-using-linq-to-sql 1 Ignoring accents in SQL Server using LINQ to SQL Farinha 2008-11-26T22:50:05Z 2008-12-02T00:40:51Z <p>How can I ignore accents (like ´, `, ~) in queries made to a SQL Server database using LINQ to SQL?</p> <p><strong>UPDATE:</strong><br /> Still haven't figured out how to do it in LINQ (or even if it's possible) but I managed to change the database to solve this issue. Just had to change the collation on the fields I wanted to search on. The collation I had was:</p> <p>SQL_Latin1_General_CP1_CI_AS</p> <p>The CI stans for "<strong>C</strong>ase <strong>I</strong>nsensitive" and AS for "<strong>A</strong>ccent <strong>S</strong>ensitive". Just add to change the AS to AI to make it "<strong>A</strong>ccent <strong>I</strong>nsensitive". The SQL statement is this:</p> <p>ALTER TABLE table_name ALTER COLUMN column_name column_type COLLATE collation_type</p> http://stackoverflow.com/questions/322441/ignoring-accents-in-sql-server-using-linq-to-sql/322476#322476 1 Answer by JasonTrue for Ignoring accents in SQL Server using LINQ to SQL JasonTrue 2008-11-26T23:06:18Z 2008-11-28T07:58:37Z <p>In SQL queries (Sql Server 2000+, as I recall), you do this by doing something like select MyString, MyId from MyTable where MyString collate Latin1_General_CI_AI ='aaaa'.</p> <p>I'm not sure if this is possible in Linq, but someone more cozy with Linq can probably translate.</p> <p>If you are ok with sorting and select/where queries ALWAYS ignoring accents, you can alter the table to specify the same collation on the field(s) with which you are concerned.</p>