Basically the same question has been asked about a year ago for slick 2.x (scala slick one-to-many collections). I\'m wondering if there has any progression been made with t
To what you want to map to, db.run returns a Future(of something), a Future[Seq[(Library, Seq[Book])]] in your case. When mapping over a future you have access to the Seq and you can transform it to something else to get a new Future.