RelationProxy.or

Inserts an OR seperator between the filters.

struct RelationProxy(T)
@property ref
or
()

Examples

proxy.where("something").and("something2").or("something3");
// will produce "WHERE ((something) AND (something2)) OR (something3)"

Meta