Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Entity framework strings using greater than operator

How do I make this query work like it does in sql? In sql I can use < and > operators on strings.

I've been googling this for about 20 minutes and have found no solution yet.

I cannot convert r.ExemptionCode to an integer as it may have values like '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
like image 744
Doug Chamberlain Avatar asked Feb 21 '12 16:02

Doug Chamberlain


1 Answers

Try this :

from r in results
where (r.ExemptionCode.CompareTo("900") > 0  || r.ExemptionCode == "701" || r.ExemptionCode == "702" ||     r.ExemptionCode == "721" || r.ExemptionCode == "724")
select r
like image 135
ThePaye Avatar answered Oct 15 '22 08:10

ThePaye