Hi,
Though, I'm just a beginner, I really like jOOQ and I think it's one of the
most awesome libraries I have ever used.
I'm wondering if it's possible create a where clause and pass it in as a
argument.
Right now I'm returning the Select clause and using currying to combine
select statements with where clauses.
private SelectOnConditionStep defaultPersonSelect(HdfFactory fact)
{
// code ...
}
Is it possible to create a where clause and pass it into the function,
instead of returning the select clause?