Im using play-slick 3.0.3 I have such column:
val someDate = column[Option[LocalDateTime]]("some_date", O.Default(None))
and in code I want to do:
table.someDate.isEmpty
but Ive got errors that isEmpty does not exists.. for example for Option[Int] it works fine..
Im having this problem after migration from 1.1.1 :)
or in other places in code:
value value is not a member of java.time.LocalDateTime
any help appreciated thanks!
Not a lot of info, but how it could be (example for slick 3.1, think should be similar for 3.0):
and than you can get result as
Please note, that slick introduced huge amount of difference even between versions 2.1 and 3.0, from my point of view it is hard to migrate. And will be harder to migrate from 1.1.1