Slice

class Slice(val source: ColumnSet, val fields: List<Expression<*>>) : FieldSet

Represents a subset of fields from a given source.

Constructors

Link copied to clipboard
constructor(source: ColumnSet, fields: List<Expression<*>>)

Properties

Link copied to clipboard
open override val fields: List<Expression<*>>

Returns the field of this field set.

Link copied to clipboard
open val realFields: List<Expression<*>>

Returns all real fields, unrolling composite CompositeColumn if present

Link copied to clipboard
open override val source: ColumnSet

Return the column set that contains this field set.

Functions

Link copied to clipboard
Link copied to clipboard

Creates a SELECT Query by selecting all columns from this ColumnSet.

Link copied to clipboard
Link copied to clipboard