KNullable Table
interface KNullableTable<E : Any> : KTable<E> , KNullableProps<E> , Selection<E?>
Content copied to clipboard
Functions
Link copied to clipboard
Link copied to clipboard
abstract fun <X : Any> exists(prop: String, block: KNonNullTableEx<X>.() -> KNonNullExpression<Boolean>?): KNonNullExpression<Boolean>?
Content copied to clipboard
abstract fun <X : Any> exists(prop: ImmutableProp, block: KNonNullTableEx<X>.() -> KNonNullExpression<Boolean>?): KNonNullExpression<Boolean>?
Content copied to clipboard
Link copied to clipboard
abstract override fun <X : Any> getAssociatedId(prop: String): KNullablePropExpression<X>
Content copied to clipboard
abstract override fun <X : Any> getAssociatedId(prop: ImmutableProp): KNullablePropExpression<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> inverseJoin(backProp: ImmutableProp): KNonNullTable<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> inverseJoinList(backProp: KProperty1<X, List<E>>): KNonNullTable<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> inverseJoinReference(backProp: KProperty1<X, E?>): KNonNullTable<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> inverseOuterJoin(backProp: ImmutableProp): KNullableTable<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> inverseOuterJoinList(backProp: KProperty1<X, List<E>>): KNullableTable<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> inverseOuterJoinReference(backProp: KProperty1<X, E?>): KNullableTable<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> joinList(prop: KProperty1<E, List<X>>): KNonNullTable<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> joinReference(prop: KProperty1<E, X?>): KNonNullTable<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> outerJoinList(prop: KProperty1<E, List<X>>): KNullableTable<X>
Content copied to clipboard
Link copied to clipboard
abstract fun <X : Any> outerJoinReference(prop: KProperty1<E, X?>): KNullableTable<X>
Content copied to clipboard