You can: 1) ``` val condition = Op.build {Reque...
# exposed
t
You can: 1)
Copy code
val condition = Op.build {RequestLog.id inList listof("foo", "bar) } 
FooTable.select(condition)
2)
Copy code
val query = FooTable.selectAll()
if (...) 
   query.adjustWhere { RequestLog.id inList listof("foo", "bar)  }
👍🏼 1