I'm using slick-pg which adds support(with implicits) for the List
and DateTime
types in slick.
Unfortunately I cannot use List[DateTime]
- slick does not understand composition of those types, but I've checked that both work correctly on their own(for example List[Int]
and DateTime
).
Is there a way to easily compose those two implicits?
1. Try to add
Just in case, the whole code that compiles:
build.sbt
Based on answer and documentation.
2. Alternatively you can add
after
strListTypeMapper
andplayJsonArrayTypeMapper
.