在Slick中执行过滤器连接时,以下两种方法之间的区别是什么?
val query = for {
c <- coffees if c.price < 9.0
s <- c.supplier -- assuming there is a foreign key
} yield (c.name, s.name)
和
val query = for {
(cof, sup) <- coffees.filter(_.price < 9.0) join supplier on(_.supId === _.id)
} yield (cof.name, sup.name)
答案 0 :(得分:5)
第一个是隐式连接,第二个是显式连接。 Slick为前者生成WHERE
子句,如:WHERE c.price < 9 AND c.supId = s.id
。然而,后者生成JOIN
,如JOIN supplier s ON c.supId = s.id
。您可以查看these examples。