orWhereQuery abstract method

QueryBuilderInterface<T> orWhereQuery(
  1. void callback(
    1. QueryBuilderInterface<T> query
    )
)

Add a nested OR WHERE clause group (Alias for orWhereNested)

Implementation

QueryBuilderInterface<T> orWhereQuery(
  void Function(QueryBuilderInterface<T> query) callback,
);