How do I filter rows in Slick if a column is null?
val employees = Queryable[Employees]
// Error
val query = employees.filter( _.terminationDate == Nil )
Might be important to note that
terminationDate: Option[String]
I am using Direct Embedding.
Type mismatch. Expected (Employees) => Boolean, actual (Employees) => Any
– Miserere