groostav
02/10/2017, 10:40 PMwhere
would be something like
MyLibraryType<T>.where(condition: BooleanExpression): Stream<T> {
val query: SQLQuery = condition.accept(WhereQueryBuilder)
val result this.session.execute(query)
return result.value;
}