Pawel Batko

Results 4 comments of Pawel Batko

@szeiger @cvogt have you considered providing overloaded `db.run` accepting additional `session` parameter so that transaction could be preserved across multiple database calls using old style methods: ``` def f(...)(implicit session:...

@szeiger @cvogt Is there a way (even deprecated one) to keep transactional semantics without being forced to change whole application into `map`s and `flatMap`s on `DBIOAction`?

@cvogt @szeiger I came up with an implementation of `db.runWithSession` with Slick 3.0.3. You can see the code here: https://github.com/pbatko/slick/commits/db-run-with-session It seems to work, though I'm not sure if I...

@cvogt I made PR https://github.com/slick/slick/pull/1315