使用大于运算符的entity framework字符串

如何使这个查询像在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 

试试这个 :

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