Hi,
I'm trying to write a LINQ to CRM query where I retrieve records with a string field > a certain value.
E.g.
from MySystemUser in SystemUserIQuerable
where MySystemUser .FullName < "SomeName"
orderby MySystemUser .FullName
While == and != are supported, >, <, >= etc. are not supported. Also the string method Compare is also not support??? MySystemUser.FullName.Compare("SomeName")
Andy