QueryBuilder.where

Adds new filter(s). Param placeholders are used, with the same names as the AA keys. Calling this multiple times will AND the filters.

Internally, a value placeholder will be used for each of the values, with the same name as the column itself. Be careful not to overwrite these before running the query.

  1. QueryBuilder where(T[string] filters)
    struct QueryBuilder
    ref
    where
    (
    T
    )
    (
    T[string] filters
    )
  2. QueryBuilder where(string filter, T params)

Meta