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

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

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