如何使此查询像在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
答案 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