Inserts an OR seperator between the filters.
proxy.where("something").and("something2").or("something3"); // will produce "WHERE ((something) AND (something2)) OR (something3)"
See Implementation
Inserts an OR seperator between the filters.