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 中搜索它时,我得到空结果,因为它不存在。如何转换é为é?
é
这是我的代码:
(from x in db.tblMyTable where x.name == "tést" select x)
我使用实体框架。
要转换该字符串,您将使用 HtmlDecode 方法:
str = Server.HtmlDecode(str);
但是,您应该研究为什么值实际上不应该进行 HTML 编码。