Slick 中的 Where 条件
Where condition in Slick
如何在 Slick 中实现等效?
select * from table1 where col1 = 1 AND (col2 = 2 or col3 = 3)
这不起作用:
val action = table.filter(_.col1 === 1 && (_.col2 === 2 || _.col3 === 3)).result
这种情况下不能使用短手。试试这个:
val action = table.filter( x => x.col1 == 1 && (x.col2 == 2 || x.col3 == 3)).result
如何在 Slick 中实现等效?
select * from table1 where col1 = 1 AND (col2 = 2 or col3 = 3)
这不起作用:
val action = table.filter(_.col1 === 1 && (_.col2 === 2 || _.col3 === 3)).result
这种情况下不能使用短手。试试这个:
val action = table.filter( x => x.col1 == 1 && (x.col2 == 2 || x.col3 == 3)).result