ArrayExpressions<T extends Object> extension

Exposes expression builders for array types in postgres.

on
  • Expression<List<T?>>

Properties

length → Expression<int>

Available on Expression<List<T?>>, provided by the ArrayExpressions extension

Returns an expression evaluating to the length of this array.
no setter

Operators

operator +(Expression<List<T>> other) → Expression<List<T>>

Available on Expression<List<T?>>, provided by the ArrayExpressions extension

Concatenates this and the other array into a single array.
operator [](Expression<int> index) → Expression<T>

Available on Expression<List<T?>>, provided by the ArrayExpressions extension

Returns an expression accessing the element at the given index from this array.