function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sandeep unnikrishnansandeep unnikrishnan 

issue with Remote object OR operator in where condtion

{ 
where: 
    { 
    or: 
        {
        FirstName: { like: "M%" }, 
        Phone: { like: '(415)%' },
        email:{ like: "M%" }
        }
    }
}
the above where condtion does not work ... it works when i group 2 criteria with an OR but not more than 2
KevinPKevinP
Sandeep, 

First, you should def. file this as a bug.

Have you tried using JS Remoting? I've found for complex queries JS remoting is often faster.