Module

x/justaos_orm/src/query/Query.ts>default#orWhere

JUSTAOS's ORM (Object–relational mapping) tool is built for Deno and provides transparent persistence for JavaScript objects to Postgres database.
Latest
method default.prototype.orWhere
import { default } from "https://dotland.deno.dev/x/justaos_orm@v10.0.0/src/query/Query.ts";

This method is used to set the or where clause for the query.

Parameters

columnOrCompoundFunction:
| string
| number
| boolean
| ((where: WhereClause) => void)
  • The column or compound function.
optional
operatorOrValue: TWhereClauseOperator | any
  • The operator or value.
optional
value: any
  • The value.

Returns

Query

The Query instance.