dazinator / CrmAdo

An ADO.NET Provider for Dynamics Crm
6 stars 4 forks source link

Should support Filter Groups (And's and Or's) #1

Closed dazinator closed 10 years ago

dazinator commented 10 years ago

Sql statements using filter groups should be fully supported by the provider. For example the following should be translated into the correct Dynamics SDK query expression and should return the correct results:-

SELECT c.firstname, c.lastname FROM contact c WHERE (c.firstname = 'Chuck' AND c.lastname = 'Norris') OR (c.firstname = 'Rachel' AND c.lastname = 'Stevens')