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

c# - Send Image in Json : 400 Bad request -

javascript - addthis share facebook and google+ url -

ios - Show keyboard with UITextField in the input accessory view -