show/hide this revision's text 4 added table reference in sql example

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'.

I'm not sure if this is possible in Linq, but someone more cozy with Linq can probably translate.

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.

show/hide this revision's text 3 corrected typography and wording

In SQL queries (Sql Server 2000+, as I recall), you do this by doing something like select MyString, MyId where MyString collate Latin1_General_CI_AI ='aaaa'.

I'm not sure if this is possible in Linq, but someone more cozy with Linq can probably translate.

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.

show/hide this revision's text 2 added 1 characters in body

In SQL queries (Sql Server 2000+, as I recall), you do this by doing something like select MyString, MyId where MyString collate Latin_General_CI_AI Latin1_General_CI_AI ='aaaa'.

I'm not sure if this is possible in Linq, but someone more cozy with Linq can probably translate.

If you are ok with sorting and select/where queries ALWAYS ignoring accents, you can alter the table to specify the same collation.

show/hide this revision's text 1