Simplify value where clause.
Table name.
Value predicate.
Filter descriptor.
The complete where clause would be:
q.where(f => f.on('alias').where(ValuePredicate.of(predicate))) Copy
q.where(f => f.on('alias').where(ValuePredicate.of(predicate)))
This is equivalent to:
where('alias', predicate) Copy
where('alias', predicate)
Simplify value where clause.