0

我的数据库中有这个条目:

tést

我从用户那里得到的是:

"tést"

当我在 db 中搜索它时,我得到空结果,因为它不存在。如何转换é为é?

这是我的代码:

(from x in db.tblMyTable where x.name == "tést" select x)

我使用实体框架。

4

1 回答 1

3

要转换该字符串,您将使用 HtmlDecode 方法:

str = Server.HtmlDecode(str);

但是,您应该研究为什么值实际上不应该进行 HTML 编码。

于 2013-01-25T15:43:24.023 回答