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
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