many non linq orms do this of course: ``` yourDBF...
# language-proposals
g
many non linq orms do this of course:
Copy code
yourDBFacade.where { itemWrapper -> greaterThan(itemWrapper.getField("age"), 35) } 

//with a couple kotlin extension methods this is easily converted to
yourDBFacade.where { it["age"] greaterThan 35 }