使用大于运算符的实体框架字符串

时间:2012-02-21 16:14:48

标签: c# tsql entity-framework-4.1

如何使此查询像在sql中一样工作?在sql中,我可以在字符串上使用<>运算符。

我一直在谷歌搜索大约20分钟,但还没有找到解决方案。

我无法将r.ExemptionCode转换为整数,因为它可能包含'91A,9AA,ZZZ,Z01'等值

from r in results
where (r.ExemptionCode > "900"  || r.ExemptionCode == "701" || r.ExemptionCode == "702" || r.ExemptionCode == "721" || r.ExemptionCode == "724")
select r

1 个答案:

答案 0 :(得分:28)

试试这个:

from r in results
where (r.ExemptionCode.CompareTo("900") > 0  || r.ExemptionCode == "701" || r.ExemptionCode == "702" ||     r.ExemptionCode == "721" || r.ExemptionCode == "724")
select r