Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/justaos_orm/src/table/Table.ts>default#where

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.where
import { default } from "https://deno.land/x/justaos_orm@v10.0.0/src/table/Table.ts";

This method is used to set the where clause for the table 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

Table

The Table instance.