Hi all, What is the expression that I should use with spark sql DSL if I need to retreive data with a field in a given set. For example :
I have the following schema
case class Person(name: String, age: Int)
And I need to do something like :
personTable.where('name in Seq("foo", "bar")) ?
Cheers.
Jaonary
