ArrayExpressions<T extends Object> extension

Exposes expression builders for array types in postgres.

on
  • Expression<List<T?>>

Properties

length → Expression<int>
Returns an expression evaluating to the length of this array.
no setter

Operators

operator +(Expression<List<T>> other) → Expression<List<T>>
Concatenates this and the other array into a single array.
operator [](Expression<int> index) → Expression<T>
Returns an expression accessing the element at the given index from this array.