Hello
I am using Microsoft CRM 2011 SDK and I'm trying to replace some SQL selects with relative SDK QueryExpression.
The question is: in C# language how can I convert this follow query?
select *
from dbo.salesorder as a
where name like '%TEST%'
OR (select b.accountnumber from dbo.account as b where b.accountid = a.customerid) like '%TEST'
I'll await an answer. Thank you very much!!!
Best regards
Matteo