如何在 Linq to SQL 中区分大小写地等于两个字符串?
如何在 Linq to SQL 中区分大小写地等于两个字符串(在 where 查询中)?
谢谢。
How to equal two strings case sensitively in Linq to SQL (in a where query)?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不能仅在 LINQ to SQL 中完成此操作。从文档中:
执行此操作的方法是在您自己的查询中指定排序规则:
请注意,我提供的排序规则指定区分大小写的匹配 (CS)。
You cannot do it solely within LINQ to SQL. From the documentation:
The way to do it is in your own query where you specify the collation:
Note that the collation I'm providing specifies a case-sensitive match (CS).
您必须在 SQL Server(或您使用的任何 DBMS)中使相关字段区分大小写。如果您使用 SQL Server,请查找排序规则字段属性,您可以在其中设置区分大小写。
You'll have to make the field in question case-sensitive in SQL Server (or whatever DBMS you use). If you use SQL Server, look for the Collation field property, in there you can set case sensitivity.
如何在 Linq to SQL 中区分大小写地等于两个字符串(在 where 查询中)?
How to equal two strings case sensitively in Linq to SQL (in a where query)?