Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は私のデータベースにこのエントリを持っています:
tést
私がユーザーから得たものは次のとおりです。
"tést"
そして、dbで検索すると、存在しないため、nullの結果が表示されます。ééに変換する方法は?
é
これは私のコードです:
(from x in db.tblMyTable where x.name == "tést" select x)
私はエンティティフレームワークを使用しています。
その文字列を変換するには、HtmlDecodeメソッドを使用します。
str = Server.HtmlDecode(str);
ただし、実際にはそうではないのに、値がHTMLエンコードされる理由を調べる必要があります。