Aleksey Anosov

Results 1 comments of Aleksey Anosov

Found a solution for such a request. ``` quote{ table1 .filter(t => table2.filter(t2 => infix"${t2.field} IN (${lift(params.mkString(","))})".as[Boolean]) .map(_.id) .contains(t.id) ) .update(_.field -> lift("foo")) } ```