实体框架 4:SQL 到 Linq:如何选择非大写的字符串?
此 SQL 选择所有非大写的名称:
select name
from myTable
where not (UPPER(name) = name collate Latin1_General_BIN )
您如何在 Linq(实体框架 4?)中做同样的思考?
编辑:
String.Compare
和 string = string 都解析为 UPPER 的 SQL (name) = name
不区分大小写。
This SQL selects all names that are not uppercase:
select name
from myTable
where not (UPPER(name) = name collate Latin1_General_BIN )
How would you do the same think in Linq (Entity Framework 4?)
Edit:
Both String.Compare
and string = string resolve to SQL of UPPER(name) = name
which is case insensitive.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它不是纯LINQ,但您可以使用ExecuteQuery,例如
注意,您需要在查询中包含id,即使您只想要名称。
It's not pure LINQ, but you could use ExecuteQuery, eg
Note, you need to include id in the query, even if you only want name.
您可以使用 ToUpper() 方法将字符串转换为大写,例如
显然您应该考虑是否需要向
ToUpper()
方法提供特定的CultureInfo
并是否要进行特定于区域性的比较而不是使用!=
运算符。You can use the ToUpper() method to convert a string to upper case, e.g.
Obviously you should consider whether you need to supply a particular
CultureInfo
to theToUpper()
method and whether you want to do a culture specific comparison instead of using the!=
operator.我不太明白你想要实现什么目标。
一般来说,实体框架和 ADO.NET 具有与 SQL Server 不同的模式。
如果您想坚持查询中的语法,请创建存储过程或 UDF 并将其移植到 EF。
我尝试使用 LINQ 执行它,但没有找到方法,因为 LINQ 的 EF SQL 生成不区分大小写!
所以我想你必须使用 UDF 或 SPROC 来完成它。
更新:
我现在必须离开,但我认为这篇文章可能对您有帮助:
Unicode 字符导致 SQL Server 2005 字符串比较出现问题
I don't exactly understand what you're trying to achieve.
Entity Framework and ADO.NET in general, have different patterns than SQL server.
If you want to stick to the syntax in your query, create a Stored-Procedures or a UDF and port it to EF.
I tried to perform it with LINQ and I didn't find a way, since EF SQL generation for LINQ is case-insensitive!
So I guess you'll have to do it with a UDF or a SPROC.
UPDATE:
I must leave now, but I think this post might help you:
Unicode characters causing issues in SQL Server 2005 string comparison