This repository was archived by the owner on Apr 3, 2019. It is now read-only.

Description
Is it possible to handle a case where we need to handle complex or and and filters as the filter below?
$filter=Name eq 'John' and LastName eq 'Doe' or MiddleName eq 'mdle' and emailAddress eq 'someeqm@gmail.com'
Here I am trying to do the following
select * from sometable where Name='John' and (LastName='Doe' or MiddleName='mdle') and emailAddress='someeqm@gmail.com'