I have this entry in my db:
tést
What I get from the user is:
"tést"
and when I'm searching it in db I get null results, because it doesn't exist.
How to convert é
to é?
This is my code:
(from x in db.tblMyTable where x.name == "tést" select x)
I use entity framework.