ArrayExpressions<T extends Object> extension
Exposes expression builders for array types in postgres.
- on
-
- Expression<
List< T?> >
- Expression<
Properties
-
length
→ Expression<
int> -
Available on Expression<
Returns an expression evaluating to the length of this array.List< , provided by the ArrayExpressions extensionT?> >no setter
Operators
-
operator +(
Expression< List< other) → Expression<T> >List< T> > -
Available on Expression<
ConcatenatesList< , provided by the ArrayExpressions extensionT?> >this
and theother
array into a single array. -
operator [](
Expression< int> index) → Expression<T> -
Available on Expression<
Returns an expression accessing the element at the givenList< , provided by the ArrayExpressions extensionT?> >index
from this array.