实体框架和区分大小写的字符串搜索
可能的重复:
linq 到实体区分大小写的比较
请参见下图,您可以帮助了解为什么会出现这种情况吗?用户记录。如果我没有记错的话,实体框架区分大小写,我正在用小写字母传递值,但它仍在获取记录。 为什么要获取记录? :(
Possible Duplicate:
linq to entities case sensitive comparison
See image below can you help why it is getting user record. If I am not wrong entity framework is case sensative I am passing value with small letter but it is still fetching record.
Why it is fetching record? :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在查询的数据库是否可能使用不区分大小写的合并?在这种情况下,SQL Server 本身(而不是 EF)将忽略大小写。
Is it possible that the database that you are querying is using a case-insensitive coallation? In that case, SQL Server itself, not EF, would be ignoring case.