I have a situation where I make a query dynamicly and the where clause can be quite long. This can work fine when testing on the server but when testing on client computers it throws a Fault for the where clauses that are generated that have above 10 OR statements. So if the user searches for an item that has
Bldg_Name = 'blah' OR Bldg_Name = 'bleh' OR Bldg_Name = 'blegh'...x10
A Fault will be thrown on their computer but this issue will not happen on the server. Any help would be greatly appreciated.