https://kotlinlang.org logo
t

tapac

07/28/2018, 12:23 PM
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