database - Linq, how to search French accents -


i have sql query like

select * user firstname '%je%' collate sql_latin1_general_cp1_ci_ai  

is linq able things this?

i can use executestorequery, know if linq can this. thanks.

french accents should no problem

var results = u in _context.user           u.firstname.contains("é")           select u 

Comments

Popular posts from this blog

assembly - 8086 TASM: Illegal Indexing Mode -

Java, LWJGL, OpenGL 1.1, decoding BufferedImage to Bytebuffer and binding to OpenGL across classes -

java - SmsManager sending message more than one -