Hi,
I'm learning to use slick with this tutorial(It is a very good guide) and found in the activator-hello-slick/tutorial/index.html says :
val upTo = Compiled { k: Column[Int] =>
ts.filter(_.k <= k).sortBy(_.k)
}
But it should be :
val upTo = Compiled { k: Column[Int] =>
ts.filter(_.key <= k).sortBy(_.key)
}
Cheers!
Hi,
I'm learning to use slick with this tutorial(It is a very good guide) and found in the activator-hello-slick/tutorial/index.html says :
But it should be :
Cheers!