Scala Slick编译的查询相当于“select * from table where word in in(words)”

时间:2017-09-13 16:20:52

标签: scala slick

我的问题是:如何创建与以下SQL等效的Slick编译查询:

select * from table where word in ('word1', 'word2', 'word3')

我目前遇到的代码如下:

val findByWords = Compiled { words: Set[String] =>
  keywords.filter(_.word inSet words)
}

编译时,我收到以下错误:

Computation of type Set[String] => slick.lifted.Query[com.company.business.db.CensoredKeyWords,com.company.business.db.CensoredKeyWords#TableElementType,Seq] cannot be compiled (as type C)
val findByWords = Compiled { words: Set[String] =>
                           ^

请注意,箭头指向大括号。

我正在使用Slick 3.2.1。 Scala 2.12.3

1 个答案:

答案 0 :(得分:5)

好像你无法使用inSet进行编译。

请参阅此处的说明:https://groups.google.com/forum/#!msg/scalaquery/2d_r4DEthfY/QqhtrR9mJdcJ