sql server - C# LINQ string.startsWith is not ignoring culture specific letters -


i bit in pickle. documentation read stringcomparison in .net invariantculture should select both "kęstutis" , "kestutis" when filter "ke"

.where(fp => filter == null ||      (fp.realname.startswith(filter, stringcomparison.invariantcultureignorecase))) 

but still forces me enter language-specific letters.

i not sure if it's important, database ms sql 2012 express.

any ideas?

this sql server string collation about. can set collation on table-column.


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -